Lehks / NostraUtils

A Utility Library for the Nostra Game Engine.
MIT License
6 stars 0 forks source link

Missing const references in Vector.hpp #4

Closed Dark-Delu closed 6 years ago

Dark-Delu commented 6 years ago

The data() in our vector is missing some const. You must change it to: e.g. const T* const &Vector::data() const (Line: 859)

This has to be done in all data().

NooCi commented 6 years ago

Done