diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/list_intern.h | 2 | ||||
-rw-r--r-- | common/stack.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/list_intern.h b/common/list_intern.h index 7ec7fdfd41..11d03fd6ff 100644 --- a/common/list_intern.h +++ b/common/list_intern.h @@ -159,7 +159,7 @@ namespace ListInternal { bool operator==(const Iterator<T>& a, const ConstIterator<T>& b) { return a._node == b._node; } - + template<typename T> bool operator!=(const Iterator<T>& a, const ConstIterator<T>& b) { return a._node != b._node; diff --git a/common/stack.h b/common/stack.h index e76404bf4c..5d447d5424 100644 --- a/common/stack.h +++ b/common/stack.h @@ -89,7 +89,7 @@ private: public: Stack<T>() {} Stack<T>(const Array<T> &stackContent) : _stack(stackContent) {} - + bool empty() const { return _stack.empty(); } |