Author: dreiss
Date: Mon Oct 20 14:29:07 2008
New Revision: 706418

URL: http://svn.apache.org/viewvc?rev=706418&view=rev
Log:
THRIFT-177. cpp: Add a missing "std::"

Modified:
    incubator/thrift/trunk/lib/cpp/src/Thrift.cpp

Modified: incubator/thrift/trunk/lib/cpp/src/Thrift.cpp
URL: 
http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/cpp/src/Thrift.cpp?rev=706418&r1=706417&r2=706418&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/cpp/src/Thrift.cpp (original)
+++ incubator/thrift/trunk/lib/cpp/src/Thrift.cpp Mon Oct 20 14:29:07 2008
@@ -54,7 +54,7 @@
 
 std::string TOutput::strerror_s(int errno_copy) {
 #ifndef HAVE_STRERROR_R
-  return "errno = " + boost::lexical_cast<string>(errno_copy);
+  return "errno = " + boost::lexical_cast<std::string>(errno_copy);
 #else  // HAVE_STRERROR_R
 
   char b_errbuf[1024] = { '\0' };


Reply via email to