We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4b7dc5 commit 26cb183Copy full SHA for 26cb183
src/vmaware.hpp
@@ -10906,9 +10906,9 @@ struct VM {
10906
10907
// ok so if the CPU is intel, the motherboard should be intel aswell (and same with AMD)
10908
// this doesnt happen in most public hardened configs out there so lets abuse it
10909
- constexpr unsigned int VID_INTEL = 0x8086;
10910
- constexpr unsigned int VID_AMD_ATI = 0x1002;
10911
- 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;
10912
10913
enum class MBVendor { Unknown = 0, Intel = 1, AMD = 2 };
10914
0 commit comments