diff options
author | 2012-03-03 14:36:33 +0000 | |
---|---|---|
committer | 2012-03-03 14:46:28 +0000 | |
commit | 3d66da9d23f83437a7817c23dac2699e842aec20 (patch) | |
tree | 444b5bb71f0272458ff0e7f61c5eb7118705da29 | |
parent | b87323021f150cd46cf69b4631401502c9d1d3c7 (diff) | |
download | paludis-3d66da9d23f83437a7817c23dac2699e842aec20.tar.gz paludis-3d66da9d23f83437a7817c23dac2699e842aec20.tar.xz |
Silence shadowing warning
-rw-r--r-- | python/exception.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/exception.cc b/python/exception.cc index 0da8e51c4..bf4fd190e 100644 --- a/python/exception.cc +++ b/python/exception.cc @@ -73,8 +73,8 @@ ExceptionRegister::get_py_exception(const std::string & name) } } -PythonError::PythonError(const std::string & message) throw () : - Exception(message) +PythonError::PythonError(const std::string & m) throw () : + Exception(m) { } |