Skip to content

Commit

Permalink
THRIFT-177. cpp: Add a missing "std::"
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@706418 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
dreiss committed Oct 20, 2008
1 parent 012f9a2 commit 2719166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cpp/src/Thrift.cpp
Expand Up @@ -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<string>(errno_copy);
return "errno = " + boost::lexical_cast<std::string>(errno_copy);
#else // HAVE_STRERROR_R

char b_errbuf[1024] = { '\0' };
Expand Down

0 comments on commit 2719166

Please sign in to comment.