Daniele Bartolini 10 éve
szülő
commit
41c65d77da
2 módosított fájl, 0 hozzáadás és 4 törlés
  1. 0 2
      src/core/containers/array.h
  2. 0 2
      src/core/containers/vector.h

+ 0 - 2
src/core/containers/array.h

@@ -280,7 +280,6 @@ template <typename T>
 inline T& Array<T>::operator[](uint32_t index)
 {
 	CE_ASSERT(index < _size, "Index out of bounds");
-
 	return _data[index];
 }
 
@@ -288,7 +287,6 @@ template <typename T>
 inline const T& Array<T>::operator[](uint32_t index) const
 {
 	CE_ASSERT(index < _size, "Index out of bounds");
-
 	return _data[index];
 }
 

+ 0 - 2
src/core/containers/vector.h

@@ -297,7 +297,6 @@ template <typename T>
 inline T& Vector<T>::operator[](uint32_t index)
 {
 	CE_ASSERT(index < _size, "Index out of bounds");
-
 	return _data[index];
 }
 
@@ -305,7 +304,6 @@ template <typename T>
 inline const T& Vector<T>::operator[](uint32_t index) const
 {
 	CE_ASSERT(index < _size, "Index out of bounds");
-
 	return _data[index];
 }