We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 21c0896 + d662c6a commit 5988f37Copy full SHA for 5988f37
1 file changed
src/vmaware.hpp
@@ -10904,9 +10904,9 @@ struct VM {
10904
10905
// ok so if the CPU is intel, the motherboard should be intel aswell (and same with AMD)
10906
// this doesnt happen in most public hardened configs out there so lets abuse it
10907
- constexpr unsigned int VID_INTEL = 0x8086;
10908
- constexpr unsigned int VID_AMD_ATI = 0x1002;
10909
- constexpr unsigned int VID_AMD_MICRO = 0x1022;
+ static constexpr unsigned int VID_INTEL = 0x8086;
+ static constexpr unsigned int VID_AMD_ATI = 0x1002;
+ static constexpr unsigned int VID_AMD_MICRO = 0x1022;
10910
10911
enum class MBVendor { Unknown = 0, Intel = 1, AMD = 2 };
10912
0 commit comments