Sometimes when I use C++, I will namespace them however:
namespace constants { static constexpr int name = 42; } … int x = constants::name;
When the type is already "constexpr int", that k isn't helping.