diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-28 22:10:27 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-28 22:10:27 +0200 |
commit | 280b4c235fe11dd629f882f0fb5054384fcee1d7 (patch) | |
tree | e89735003b52b04e3c17a3ad5532b36e055cdda7 /serialize/binary-writer.hpp | |
parent | 1b84fc144f77c4ebef6fdc0a476410420e0a95b3 (diff) |
more work
Diffstat (limited to 'serialize/binary-writer.hpp')
-rw-r--r-- | serialize/binary-writer.hpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/serialize/binary-writer.hpp b/serialize/binary-writer.hpp index ead0824d..02fe427d 100644 --- a/serialize/binary-writer.hpp +++ b/serialize/binary-writer.hpp @@ -11,7 +11,6 @@ struct binary_writer final { template<integer T> constexpr void write(T x) noexcept;
template<std::floating_point T> void write(T x) noexcept;
constexpr void write_asciiz_string(StringView str) noexcept;
-
constexpr std::size_t bytes_written() const noexcept { return _bytes_written; }
private:
|