diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-24 00:29:16 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-24 00:29:16 +0200 |
commit | 98c8fd5d39ee645922f071b6433308a813245500 (patch) | |
tree | 36804c19823b601608c3c44694f6db20aa8ce21a /deimos/core/std.h | |
parent | 85985c4408906b18eb451ca94edabaa0c3607817 (diff) |
Add custom formatter & use it on Status
Diffstat (limited to 'deimos/core/std.h')
-rw-r--r-- | deimos/core/std.h | 1 |
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;
|