COMMON: Slight formatting fixes in array.h.

This commit is contained in:
Johannes Schickel 2012-02-22 20:00:11 +01:00
parent d6ac369303
commit 417cd7625c

View file

@ -201,11 +201,11 @@ public:
}
return true;
}
bool operator!=(const Array<T> &other) const {
return !(*this == other);
}
iterator begin() {
return _storage;
}