1
0
mirror of synced 2024-12-14 08:42:54 +01:00
ImHex/lib/libimhex/include/hex/helpers/intrinsics.hpp
2023-11-10 20:47:08 +01:00

9 lines
96 B
C++

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