Added a couple of using declarations that clang needed

This commit is contained in:
Jez Higgins 2010-12-15 10:09:43 +00:00
parent dcbb59b2e8
commit 50c39c533c
2 changed files with 3 additions and 0 deletions

View file

@ -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) { }

View file

@ -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();