summaryrefslogtreecommitdiff
path: root/asl/meta.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'asl/meta.hpp')
-rw-r--r--asl/meta.hpp2
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>;