From 3d66da9d23f83437a7817c23dac2699e842aec20 Mon Sep 17 00:00:00 2001 From: Ciaran McCreesh Date: Sat, 3 Mar 2012 14:36:33 +0000 Subject: Silence shadowing warning --- python/exception.cc | 4 ++-- 1 file 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) { } -- cgit v1.2.3