mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-26 21:58:39 +01:00
Added a couple of using declarations that clang needed
This commit is contained in:
parent
dcbb59b2e8
commit
50c39c533c
2 changed files with 3 additions and 0 deletions
|
@ -15,6 +15,8 @@ template<class string_type, class string_adaptor>
|
|||
class LogicalOperator : public BinaryExpression<string_type, string_adaptor>
|
||||
{
|
||||
public:
|
||||
using BinaryExpression<string_type, string_adaptor>::evaluateAsBool;
|
||||
|
||||
LogicalOperator(XPathExpression_impl<string_type, string_adaptor>* lhs, XPathExpression_impl<string_type, string_adaptor>* rhs) :
|
||||
BinaryExpression<string_type, string_adaptor>(lhs, rhs) { }
|
||||
|
||||
|
|
|
@ -54,6 +54,7 @@ class basic_socketbuf : public std::basic_streambuf<charT, traitsT>
|
|||
using std::basic_streambuf<charT, traitsT>::egptr;
|
||||
using std::basic_streambuf<charT, traitsT>::eback;
|
||||
using std::basic_streambuf<charT, traitsT>::pptr;
|
||||
using std::basic_streambuf<charT, traitsT>::sputc;
|
||||
|
||||
basic_socketbuf();
|
||||
virtual ~basic_socketbuf();
|
||||
|
|
Loading…
Reference in a new issue