We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05e39c8 commit 83d8770Copy full SHA for 83d8770
src/vmaware.hpp
@@ -1611,7 +1611,7 @@ struct VM {
1611
1612
[[nodiscard]] static std::unique_ptr<std::string> sys_result(const char* cmd) {
1613
#if (VMA_CPP < 14)
1614
- UNUSED(cmd);
+ VMAWARE_UNUSED(cmd);
1615
return util::make_unique<std::string>();
1616
#else
1617
#if (LINUX || APPLE)
@@ -4415,7 +4415,7 @@ struct VM {
4415
}
4416
}();
4417
4418
- UNUSED(aux);
+ VMAWARE_UNUSED(aux);
4419
int regs[4] = { 0 };
4420
cpu::cpuid(regs, 0x80000001);
4421
const bool haveRdtscp = (regs[3] & (1u << 27)) != 0;
0 commit comments