diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-11-07 23:38:52 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | ac47be51b79f4c3e49656870e135453eefe759ea (patch) | |
tree | 80b2ce06d827ad218e3e76593fc23a71b1d6655c /asl/format.cpp | |
parent | 261076b35fe684642da50d3b6208469cf972f269 (diff) |
Some more work on asl::string_view
Diffstat (limited to 'asl/format.cpp')
-rw-r--r-- | asl/format.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asl/format.cpp b/asl/format.cpp index b410d39..a86ce69 100644 --- a/asl/format.cpp +++ b/asl/format.cpp @@ -71,7 +71,7 @@ void asl::format_internals::format( void asl::AslFormat(formatter& f, const char* str)
{
- f.write(str, static_cast<int64_t>(__builtin_strlen(str)));
+ f.write(str, static_cast<isize_t>(__builtin_strlen(str)));
}
void asl::AslFormat(formatter& f, float)
|