diff options
Diffstat (limited to 'raul/List.h')
-rw-r--r-- | raul/List.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/List.h b/raul/List.h index 55959a1..2594b7b 100644 --- a/raul/List.h +++ b/raul/List.h @@ -81,7 +81,7 @@ public: unsigned size() const { return (unsigned)_size.get(); } /// Valid for any thread - bool empty() { return (_head.get() != NULL); } + bool empty() { return (_head.get() == NULL); } class iterator; |