9 lines
96 B
C++
9 lines
96 B
C++
#pragma once
|
|
|
|
namespace hex {
|
|
|
|
void unused(auto && ... x) {
|
|
((void)x, ...);
|
|
}
|
|
|
|
} |