From 0e7999f2d147b026aaee6693bdd2be2cb4a2519e Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Tue, 8 Oct 2024 23:33:21 +0200 Subject: Start work on formatting --- asl/meta.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'asl/meta.hpp') diff --git a/asl/meta.hpp b/asl/meta.hpp index 931310f..7372c3f 100644 --- a/asl/meta.hpp +++ b/asl/meta.hpp @@ -1,11 +1,15 @@ #pragma once +#include "asl/integers.hpp" + namespace asl { struct empty {}; template struct id { using type = T; }; +template static constexpr int64_t types_count = sizeof...(Args); + template struct integral_constant { static constexpr T value = kValue; }; template using bool_constant = integral_constant; -- cgit