diff --git a/paddle/fluid/string/printf.h b/paddle/fluid/string/printf.h index 65dec970debf8859b113374aebbe161b27010214..3b40c6029d5f825f222652b834623708e97c5969 100644 --- a/paddle/fluid/string/printf.h +++ b/paddle/fluid/string/printf.h @@ -85,11 +85,9 @@ void Fprintf(std::ostream& out, const char* fmt, const Args&... args) { template std::string Sprintf(const Args&... args) { - if (0u == sizeof...(args)) { - Sprintf("", args); - } - - return Sprintf(args, args); + std::ostringstream oss; + Fprintf(oss, "", args...); + return oss.str(); } template