summaryrefslogtreecommitdiffhomepage
path: root/serialize/binary-reader.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'serialize/binary-reader.hpp')
-rw-r--r--serialize/binary-reader.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/serialize/binary-reader.hpp b/serialize/binary-reader.hpp
index 8251cb70..ebe7ffde 100644
--- a/serialize/binary-reader.hpp
+++ b/serialize/binary-reader.hpp
@@ -32,6 +32,7 @@ struct binary_reader final {
template<serializable T> constexpr T read() noexcept(false);
template<size_t N> constexpr std::array<char, N> read() noexcept(false);
template<size_t Max> constexpr auto read_asciiz_string() noexcept(false);
+ constexpr StringView read_asciiz_string_() noexcept(false);
binary_reader(binary_reader&&) noexcept = default;
binary_reader& operator=(binary_reader&&) noexcept = default;