From: Padraig O'Sullivan Date: Sat, 19 Sep 2009 23:53:48 +0000 (-0400) Subject: Forgot to include the std:: namespace prefix before string. X-Git-Tag: 0.34~13^2~5 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=fe91a545f9319ba0b6dd9c04cf117d6afc8ac8d7;p=m6w6%2Flibmemcached Forgot to include the std:: namespace prefix before string. --- diff --git a/libmemcached/exception.hpp b/libmemcached/exception.hpp index 043779a6..665c816f 100644 --- a/libmemcached/exception.hpp +++ b/libmemcached/exception.hpp @@ -29,7 +29,7 @@ namespace memcache Exception(const char *msg, int in_errno) : - std::runtime_error(string(msg)), + std::runtime_error(std::string(msg)), _errno(in_errno) {} virtual ~Exception() throw() {}