summaryrefslogtreecommitdiffhomepage
path: root/serialize/binary-writer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'serialize/binary-writer.hpp')
-rw-r--r--serialize/binary-writer.hpp1
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: