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/meta.hpp | |
parent | 261076b35fe684642da50d3b6208469cf972f269 (diff) |
Some more work on asl::string_view
Diffstat (limited to 'asl/meta.hpp')
-rw-r--r-- | asl/meta.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<typename T> struct id { using type = T; };
-template<typename... Args> static constexpr int64_t types_count = sizeof...(Args);
+template<typename... Args> static constexpr isize_t types_count = sizeof...(Args);
template<typename T, T kValue> struct integral_constant { static constexpr T value = kValue; };
template<bool B> using bool_constant = integral_constant<bool, B>;
|