Correcting mistake I made in exceptions header file.
authorPadraig O'Sullivan <osullivan.padraig@gmail.com>
Wed, 5 Aug 2009 02:15:44 +0000 (22:15 -0400)
committerPadraig O'Sullivan <osullivan.padraig@gmail.com>
Wed, 5 Aug 2009 02:15:44 +0000 (22:15 -0400)
libmemcached/exception.hpp

index 779280b9d55ab9aed67fe229d1b8f2dd1629d3dd..963f383588f52919b7515204d6198606170d50d3 100644 (file)
@@ -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() {}
   };