From: Padraig O'Sullivan Date: Wed, 5 Aug 2009 02:15:44 +0000 (-0400) Subject: Correcting mistake I made in exceptions header file. X-Git-Tag: 0.34~13^2~16 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=ab40ca3627fc4f5fe7a020a92fcdb925e108a7af;p=awesomized%2Flibmemcached Correcting mistake I made in exceptions header file. --- diff --git a/libmemcached/exception.hpp b/libmemcached/exception.hpp index 779280b9..963f3835 100644 --- a/libmemcached/exception.hpp +++ b/libmemcached/exception.hpp @@ -46,15 +46,15 @@ namespace memcache class Warning : public Exception { public: - Warning(const std::string& msg, bool errno) : Exception(msg, errno) {} - Warning(const char *msg, bool errno) : Exception(msg, errno) {} + Warning(const std::string& msg, bool in_errno) : Exception(msg, in_errno) {} + Warning(const char *msg, bool in_errno) : Exception(msg, in_errno) {} }; class Error : public Exception { public: - Error(const std::string& msg, bool errno) : Exception(msg, errno) {} - Error(const char *msg, bool errno) : Exception(msg, errno) {} + Error(const std::string& msg, bool in_errno) : Exception(msg, in_errno) {} + Error(const char *msg, bool in_errno) : Exception(msg, in_errno) {} virtual ~Error() throw() {} };