diff --git a/public/blah/containers/list.h b/public/blah/containers/list.h index b87b98b..2d102fb 100644 --- a/public/blah/containers/list.h +++ b/public/blah/containers/list.h @@ -273,7 +273,7 @@ namespace Blah } template - inline bool List::contains(const T& item) const + bool List::contains(const T& item) const { for (int i = 0; i < m_count; i++) if (*(m_buffer + i) == item) @@ -282,7 +282,7 @@ namespace Blah } template - inline int List::index_of(const T& item) const + int List::index_of(const T& item) const { for (int i = 0; i < m_count; i++) if (*(m_buffer + i) == item)