fixed warnings

This commit is contained in:
Jez Higgins 2010-02-20 13:47:07 +00:00
parent c35185a64c
commit fb380c8e08
3 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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<class string_type, class string_adaptor>

View file

@ -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