From: David Reiss Date: Mon, 20 Oct 2008 21:29:07 +0000 (+0000) Subject: THRIFT-177. cpp: Add a missing "std::" X-Git-Tag: 0.2.0~425 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=826e648354c4e2e37abe5d8dda04e6497d76e16a;p=common%2Fthrift.git THRIFT-177. cpp: Add a missing "std::" git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@706418 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/lib/cpp/src/Thrift.cpp b/lib/cpp/src/Thrift.cpp index c7840159..fb6bcbc5 100644 --- a/lib/cpp/src/Thrift.cpp +++ b/lib/cpp/src/Thrift.cpp @@ -54,7 +54,7 @@ void TOutput::perror(const char *message, int errno_copy) { std::string TOutput::strerror_s(int errno_copy) { #ifndef HAVE_STRERROR_R - return "errno = " + boost::lexical_cast(errno_copy); + return "errno = " + boost::lexical_cast(errno_copy); #else // HAVE_STRERROR_R char b_errbuf[1024] = { '\0' };