summaryrefslogtreecommitdiffstats
path: root/include/raul/Array.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/raul/Array.hpp')
-rw-r--r--include/raul/Array.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/raul/Array.hpp b/include/raul/Array.hpp
index a56ecb4..3c6234c 100644
--- a/include/raul/Array.hpp
+++ b/include/raul/Array.hpp
@@ -126,15 +126,15 @@ public:
}
}
- inline size_t size() const { return _size; }
+ size_t size() const { return _size; }
- inline T& operator[](size_t i) const
+ T& operator[](size_t i) const
{
assert(i < _size);
return _elems[i];
}
- inline T& at(size_t i) const
+ T& at(size_t i) const
{
assert(i < _size);
return _elems[i];