1
0
mirror of synced 2024-11-15 03:27:40 +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, ...);
}
}