aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_rpc_json.cpp
diff options
context:
space:
mode:
authorGravatar w00t2008-02-11 10:26:18 +0000
committerGravatar w00t2008-02-11 10:26:18 +0000
commit4798f98adad084cf9e207cc7b32d7e4370e9cc90 (patch)
tree97c98887415f3ec339212b3d179664ba11fb3a48 /src/modules/m_rpc_json.cpp
parentMore -Wshadow fixes.. not really finished yet (diff)
downloadinspircd++-4798f98adad084cf9e207cc7b32d7e4370e9cc90.tar.gz
inspircd++-4798f98adad084cf9e207cc7b32d7e4370e9cc90.tar.bz2
inspircd++-4798f98adad084cf9e207cc7b32d7e4370e9cc90.zip
Last of the -Wshadow fixes.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8894 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_rpc_json.cpp')
-rw-r--r--src/modules/m_rpc_json.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_rpc_json.cpp b/src/modules/m_rpc_json.cpp
index e0421f611..415e8b2d7 100644
--- a/src/modules/m_rpc_json.cpp
+++ b/src/modules/m_rpc_json.cpp
@@ -27,8 +27,8 @@ class JsonException : public std::exception
private:
std::string _what;
public:
- JsonException(const std::string &what)
- : _what(what)
+ JsonException(const std::string &swhat)
+ : _what(swhat)
{
}