fix unused arg issue in test

This commit is contained in:
Walter Gray 2020-12-07 22:07:47 -08:00
parent dafbc05dbd
commit 9fafb14f29

View File

@ -123,7 +123,7 @@ void TestZString() {
(void)fmt::format(FMT_STRING("{}"), fmt::join(hello, "_")); (void)fmt::format(FMT_STRING("{}"), fmt::join(hello, "_"));
} }
int main(int argc, char** argv) { int main(int, char**) {
TestFormatApi(); TestFormatApi();
TestLiteralsApi(); TestLiteralsApi();
FormatToNOutputIteratorTest(); FormatToNOutputIteratorTest();