From ac47be51b79f4c3e49656870e135453eefe759ea Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Thu, 7 Nov 2024 23:38:52 +0100 Subject: Some more work on asl::string_view --- asl/io.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asl/io.hpp') diff --git a/asl/io.hpp b/asl/io.hpp index 79c70c2..e7d1c9c 100644 --- a/asl/io.hpp +++ b/asl/io.hpp @@ -14,7 +14,7 @@ public: virtual ~writer() = default; // @Todo Use string view, or span of bytes? - virtual void write(const char* str, int64_t len) = 0; + virtual void write(const char* str, isize_t len) = 0; }; } // namespace asl -- cgit