From db34f151779fbfc72a5c6d373b9b5b25da9085b7 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sat, 17 Aug 2024 00:27:25 +0200 Subject: Enable compilation on ChromeOS --- asl/meta.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'asl/meta.hpp') diff --git a/asl/meta.hpp b/asl/meta.hpp index 614fa5d..4a5b448 100644 --- a/asl/meta.hpp +++ b/asl/meta.hpp @@ -85,9 +85,9 @@ template concept is_integral = __is_integral(T); template concept is_floating_point = __is_floating_point(T); template concept is_arithmetic = is_integral || is_floating_point; -template struct _is_array_helper : false_type {}; -template struct _is_array_helper : true_type {}; -template struct _is_array_helper : true_type {}; +template struct _is_array_helper : false_type {}; +template struct _is_array_helper : true_type {}; +template struct _is_array_helper : true_type {}; template concept is_array = _is_array_helper::value; -- cgit