summaryrefslogtreecommitdiff
path: root/deimos/core/std.h
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-24 00:29:16 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-24 00:29:16 +0200
commit98c8fd5d39ee645922f071b6433308a813245500 (patch)
tree36804c19823b601608c3c44694f6db20aa8ce21a /deimos/core/std.h
parent85985c4408906b18eb451ca94edabaa0c3607817 (diff)
Add custom formatter & use it on Status
Diffstat (limited to 'deimos/core/std.h')
-rw-r--r--deimos/core/std.h1
1 files changed, 1 insertions, 0 deletions
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<typename T> concept signed_integral = integral<T> && __is_signed(T);
template<typename T> concept unsigned_integral = integral<T> && __is_unsigned(T);
template<typename T> constexpr bool is_trivially_destructible_v = __is_trivially_destructible(T);
+template<typename T, typename... Args> constexpr bool is_constructible_v = __is_constructible(T, Args...);
template<typename T> constexpr bool is_trivially_copyable_v = __is_trivially_copyable(T);
template<typename U, typename V> constexpr bool _is_same_helper = false;