From fe91a545f9319ba0b6dd9c04cf117d6afc8ac8d7 Mon Sep 17 00:00:00 2001 From: Padraig O'Sullivan Date: Sat, 19 Sep 2009 19:53:48 -0400 Subject: [PATCH] Forgot to include the std:: namespace prefix before string. --- libmemcached/exception.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {} -- 2.30.2