summaryrefslogtreecommitdiff
path: root/asl/io.hpp
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-11-07 23:38:52 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-12-20 15:35:58 +0100
commitac47be51b79f4c3e49656870e135453eefe759ea (patch)
tree80b2ce06d827ad218e3e76593fc23a71b1d6655c /asl/io.hpp
parent261076b35fe684642da50d3b6208469cf972f269 (diff)
Some more work on asl::string_view
Diffstat (limited to 'asl/io.hpp')
-rw-r--r--asl/io.hpp2
1 files changed, 1 insertions, 1 deletions
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