mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-30 21:05:56 -05:00
9 lines
96 B
C++
9 lines
96 B
C++
#pragma once
|
|
|
|
namespace hex {
|
|
|
|
void unused(auto && ... x) {
|
|
((void)x, ...);
|
|
}
|
|
|
|
} |