Changed whitespace formatting of function return type

This commit is contained in:
Chlumsky 2022-12-04 22:00:53 +01:00
parent e44a8b27d5
commit a3dcadb9df
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ public:
inline int length() const { return (int) std::vector<T>::size(); }
inline explicit operator T *() { return std::vector<T>::data(); }
inline explicit operator const T *() const { return std::vector<T>::data(); }
inline T & operator[](int index) { return std::vector<T>::operator[](index); }
inline const T & operator[](int index) const { return std::vector<T>::operator[](index); }
inline T &operator[](int index) { return std::vector<T>::operator[](index); }
inline const T &operator[](int index) const { return std::vector<T>::operator[](index); }
};