diff --git a/paddle/fluid/string/printf.h b/paddle/fluid/string/printf.h index 3b40c6029d5f825f222652b834623708e97c5969..94e319b330ddc859e64b052b6799a63c8ef14ee9 100644 --- a/paddle/fluid/string/printf.h +++ b/paddle/fluid/string/printf.h @@ -90,8 +90,8 @@ std::string Sprintf(const Args&... args) { return oss.str(); } -template -std::string Sprintf(const char* fmt, const Args&... args) { +template +std::string Sprintf(const Args&... args) { std::ostringstream oss; Fprintf(oss, fmt, args...); return oss.str();