From a4e5bf977297f3142e51c3fe94b0ded8af12224a Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Wed, 25 Feb 2015 17:33:00 +0000 Subject: Don't bother passing through the mac_length, the caller already knows it since they supplied it --- include/axolotl/list.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/axolotl/list.hh') 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]; } -- cgit v1.2.3