Either use enums or classes:
namespace vmm::kvm { enum class Constants { MAX_MSRS{...} }; struct Constants { static constexpr auto MAX_MSRS = ...; }; }