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/meta.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asl/meta.hpp') diff --git a/asl/meta.hpp b/asl/meta.hpp index 1d82739..1c058c4 100644 --- a/asl/meta.hpp +++ b/asl/meta.hpp @@ -8,7 +8,7 @@ struct empty {}; template struct id { using type = T; }; -template static constexpr int64_t types_count = sizeof...(Args); +template static constexpr isize_t types_count = sizeof...(Args); template struct integral_constant { static constexpr T value = kValue; }; template using bool_constant = integral_constant; -- cgit