Changed whitespace formatting of function return type
This commit is contained in:
parent
e44a8b27d5
commit
a3dcadb9df
|
|
@ -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); }
|
||||
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue