From ab40ca3627fc4f5fe7a020a92fcdb925e108a7af Mon Sep 17 00:00:00 2001 From: Padraig O'Sullivan Date: Tue, 4 Aug 2009 22:15:44 -0400 Subject: [PATCH] Correcting mistake I made in exceptions header file. --- libmemcached/exception.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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() {} }; -- 2.30.2