diff --git a/src/Common/macros.h b/src/Common/macros.h index 8b908a20..ed97b658 100644 --- a/src/Common/macros.h +++ b/src/Common/macros.h @@ -78,11 +78,6 @@ extern const char kServerName[]; void printArgs(std::ostream &out); -template -void printArgs(std::ostream &out, First &&first) { - out << std::forward(first); -} - template void printArgs(std::ostream &out, First &&first, ARGS &&...args) { out << std::forward(first);