From fb380c8e0866a2e7a3e76238ae1d322d32af2eee Mon Sep 17 00:00:00 2001 From: Jez Higgins Date: Sat, 20 Feb 2010 13:47:07 +0000 Subject: [PATCH] fixed warnings --- include/XSLT/impl/xslt_compilation_context.hpp | 4 ++-- tests/XPath/execute_test.hpp | 2 +- tests/XPath/match_test.hpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/XSLT/impl/xslt_compilation_context.hpp b/include/XSLT/impl/xslt_compilation_context.hpp index f74f27a5..869ae50a 100644 --- a/include/XSLT/impl/xslt_compilation_context.hpp +++ b/include/XSLT/impl/xslt_compilation_context.hpp @@ -195,8 +195,8 @@ private: return 0; } // resolveFunction - virtual bool hasFunction(const std::string& namespace_uri, - const std::string& name) const + virtual bool hasFunction(const std::string& /* namespace_uri */, + const std::string& /* name */) const { return false; } // hasFunction diff --git a/tests/XPath/execute_test.hpp b/tests/XPath/execute_test.hpp index 70cf0b4f..b35bf8c3 100644 --- a/tests/XPath/execute_test.hpp +++ b/tests/XPath/execute_test.hpp @@ -91,7 +91,7 @@ public: return 0; } // resolveFunction - virtual bool hasFunction(const string_type&, const string_type& name) const { return false; } + virtual bool hasFunction(const string_type&, const string_type&) const { return false; } }; // class TestFunctionResolver template diff --git a/tests/XPath/match_test.hpp b/tests/XPath/match_test.hpp index 1f0581f2..66f4bda3 100644 --- a/tests/XPath/match_test.hpp +++ b/tests/XPath/match_test.hpp @@ -62,7 +62,7 @@ public: return 0; } // resolveFunction - virtual bool hasFunction(const string_type&, const string_type& name) const { return false; } + virtual bool hasFunction(const string_type&, const string_type&) const { return false; } }; // class TestFunctionResolver