aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/list.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/common/list.h b/common/list.h
index 7c514fd6f4..2fe07a5ccc 100644
--- a/common/list.h
+++ b/common/list.h
@@ -26,7 +26,6 @@
#define COMMON_LIST_H
#include "common/scummsys.h"
-#include "common/algorithm.h"
namespace Common {
@@ -268,10 +267,6 @@ public:
const_iterator end() const {
return const_iterator(const_cast<NodeBase*>(&_anchor));
}
-
- bool contains(const t_T &key) const {
- return find(begin(), end(), key) != end();
- }
};
} // End of namespace Common