clarify/fix std::visit compile time check

This commit is contained in:
Lion Kortlepel
2026-04-19 20:34:20 +00:00
parent 4045727c8b
commit 06bd719dbf
3 changed files with 9 additions and 5 deletions
+4
View File
@@ -132,6 +132,10 @@ private:
static inline Version mVersion { 3, 9, 2 };
};
/// Used to static_assert in std::visit
template<class>
inline constexpr bool AlwaysFalseV = false;
void SplitString(std::string const& str, const char delim, std::vector<std::string>& out);
std::string LowerString(std::string str);