example.cpp: Fixed a minor pedantic warning

This commit is contained in:
Mario Emmenlauer 2022-07-18 12:06:13 +02:00
parent 938e5753c8
commit 19e1595808

View File

@ -14,7 +14,7 @@ void debugUUID(const UUIDv4::UUID &uuid) {
printf("\n");
}
int main(int argc, char* argv[]) {
int main([[maybe_unused]] int argc, [[maybe_unused]] char* argv[]) {
UUIDv4::UUIDGenerator<std::mt19937_64> uuidGenerator;
char txt[37];
auto t1 = std::chrono::high_resolution_clock::now();