CI updates

This commit is contained in:
Markus F.X.J. Oberhumer
2023-11-01 08:48:27 +01:00
parent e964d4acf3
commit 3b7d25ac49
7 changed files with 136 additions and 79 deletions
+1
View File
@@ -114,6 +114,7 @@ constexpr bool string_ge(const char *a, const char *b) { return !string_lt(a, b)
template <class T = int, bool IsThirdTrue = false> // Third is false by default
struct TriBool final {
static constexpr bool is_third_true = IsThirdTrue;
// types
typedef T underlying_type;
static_assert(std::is_integral_v<underlying_type>);