mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
fixed warnings
This commit is contained in:
parent
c35185a64c
commit
fb380c8e08
3 changed files with 4 additions and 4 deletions
|
@ -195,8 +195,8 @@ private:
|
||||||
return 0;
|
return 0;
|
||||||
} // resolveFunction
|
} // resolveFunction
|
||||||
|
|
||||||
virtual bool hasFunction(const std::string& namespace_uri,
|
virtual bool hasFunction(const std::string& /* namespace_uri */,
|
||||||
const std::string& name) const
|
const std::string& /* name */) const
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
} // hasFunction
|
} // hasFunction
|
||||||
|
|
|
@ -91,7 +91,7 @@ public:
|
||||||
return 0;
|
return 0;
|
||||||
} // resolveFunction
|
} // 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
|
}; // class TestFunctionResolver
|
||||||
|
|
||||||
template<class string_type, class string_adaptor>
|
template<class string_type, class string_adaptor>
|
||||||
|
|
|
@ -62,7 +62,7 @@ public:
|
||||||
return 0;
|
return 0;
|
||||||
} // resolveFunction
|
} // 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
|
}; // class TestFunctionResolver
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue