nsgmls: fix up some gcc 4.8 warnings.

This commit is contained in:
Jon Trulson
2014-03-09 14:24:00 -06:00
parent de491a16de
commit 0394dde3f9
4 changed files with 15 additions and 15 deletions

View File

@@ -49,8 +49,8 @@ public:
void swap(IList<T> &list) { IListBase::swap(list); }
T *head() const { return (T *)IListBase::head(); }
T *get() { return (T *)IListBase::get(); }
IListBase::clear;
IListBase::empty;
using IListBase::clear;
using IListBase::empty;
friend class IListIter<T>;
private:
IList(const IList<T> &) {}