aboutsummaryrefslogtreecommitdiff
path: root/include/axolotl/list.hh
diff options
context:
space:
mode:
Diffstat (limited to 'include/axolotl/list.hh')
-rw-r--r--include/axolotl/list.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/axolotl/list.hh b/include/axolotl/list.hh
index ae41baa..a3c3d01 100644
--- a/include/axolotl/list.hh
+++ b/include/axolotl/list.hh
@@ -18,12 +18,12 @@ public:
/**
* Is the list empty?
*/
- bool empty() { return _end == _data; }
+ bool empty() const { return _end == _data; }
/**
* The number of items in the list.
*/
- std::size_t size() { return _end - _data; }
+ std::size_t size() const { return _end - _data; }
T & operator[](std::size_t index) { return _data[index]; }