string_theory
string_theory copied to clipboard
some minor enhancements
Is the change to std::enable_if_t necessary? That would bump the project from requiring C++11 to C++14, no?
Might also be worth specifying both inline and constexpr: https://quuxplusone.github.io/blog/2022/07/08/inline-constexpr/
Is the change to
std::enable_if_tnecessary? That would bump the project from requiring C++11 to C++14, no?
it is not necessary I honestly thought it was part of the c++11 standard.
Might also be worth specifying both
inlineandconstexpr: https://quuxplusone.github.io/blog/2022/07/08/inline-constexpr/
that would only apply if i was changing variables plus inline constexpr seems to be a c++17 standard.