Bump project requirement to C++17

This commit is contained in:
Chocobo1
2020-12-19 14:52:01 +08:00
parent a579b4a519
commit d70b893852
19 changed files with 101 additions and 139 deletions

View File

@@ -42,7 +42,7 @@ public:
*this = boolean ? True : False;
}
TriStateBool &operator=(const TriStateBool &other) = default; // TODO: add constexpr when using C++17
constexpr TriStateBool &operator=(const TriStateBool &other) = default;
explicit constexpr operator signed char() const
{