diff options
Diffstat (limited to 'common/stack.h')
-rw-r--r-- | common/stack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/stack.h b/common/stack.h index 5e4e55035b..ce438b6174 100644 --- a/common/stack.h +++ b/common/stack.h @@ -83,7 +83,7 @@ public: Stack<T>() {} bool empty() const { - return _stack.isEmpty(); + return _stack.empty(); } void clear() { _stack.clear(); |