1
0
mirror of synced 2024-11-15 19:43:23 +01:00
ImHex/lib/libimhex/include/hex/helpers/intrinsics.hpp

9 lines
103 B
C++

#pragma once
namespace hex {
inline void unused(auto && ... x) {
((void)x, ...);
}
}