From 417cd7625c44bcae1b40c0a0b86ea6592ffd813c Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Wed, 22 Feb 2012 20:00:11 +0100 Subject: COMMON: Slight formatting fixes in array.h. --- common/array.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/common/array.h b/common/array.h index 0b952eb988..a2c3023362 100644 --- a/common/array.h +++ b/common/array.h @@ -24,7 +24,7 @@ #include "common/scummsys.h" #include "common/algorithm.h" -#include "common/textconsole.h" // For error() +#include "common/textconsole.h" // For error() #include "common/memory.h" namespace Common { @@ -153,17 +153,17 @@ public: // TODO: insert, remove, ... - T& operator[](size_type idx) { + T &operator[](size_type idx) { assert(idx < _size); return _storage[idx]; } - const T& operator[](size_type idx) const { + const T &operator[](size_type idx) const { assert(idx < _size); return _storage[idx]; } - Array& operator=(const Array &array) { + Array &operator=(const Array &array) { if (this == &array) return *this; @@ -201,24 +201,24 @@ public: } return true; } + bool operator!=(const Array &other) const { return !(*this == other); } - - iterator begin() { + iterator begin() { return _storage; } - iterator end() { + iterator end() { return _storage + _size; } - const_iterator begin() const { + const_iterator begin() const { return _storage; } - const_iterator end() const { + const_iterator end() const { return _storage + _size; } -- cgit v1.2.3