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