From 472758f3b13844b3c9d6488a9359a62559443da8 Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Fri, 9 Dec 2016 14:59:29 +0100 Subject: Fix shadowing warnings in rapidxml --- lib/include/rapidxml/rapidxml.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/include/rapidxml/rapidxml.hpp b/lib/include/rapidxml/rapidxml.hpp index ae91e08..ffa41c4 100644 --- a/lib/include/rapidxml/rapidxml.hpp +++ b/lib/include/rapidxml/rapidxml.hpp @@ -74,9 +74,9 @@ namespace rapidxml public: //! Constructs parse error - parse_error(const char *what, void *where) - : m_what(what) - , m_where(where) + parse_error(const char *what_, void *where_) + : m_what(what_) + , m_where(where_) { } -- cgit v1.2.3