From 98c8fd5d39ee645922f071b6433308a813245500 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Wed, 24 Apr 2024 00:29:16 +0200 Subject: Add custom formatter & use it on Status --- deimos/core/std.h | 1 + 1 file changed, 1 insertion(+) (limited to 'deimos/core/std.h') diff --git a/deimos/core/std.h b/deimos/core/std.h index 4bb2983..0e0336e 100644 --- a/deimos/core/std.h +++ b/deimos/core/std.h @@ -24,6 +24,7 @@ template concept signed_integral = integral && __is_signed(T); template concept unsigned_integral = integral && __is_unsigned(T); template constexpr bool is_trivially_destructible_v = __is_trivially_destructible(T); +template constexpr bool is_constructible_v = __is_constructible(T, Args...); template constexpr bool is_trivially_copyable_v = __is_trivially_copyable(T); template constexpr bool _is_same_helper = false; -- cgit