Remove duplicate const

pull/185/head
James Ball 2023-12-26 19:57:38 +00:00 zatwierdzone przez James H Ball
rodzic 925bf98e4b
commit 968916bb10
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -133,8 +133,8 @@ public:
const EnvCurve& operator[] (const int index) const throw();
inline int size() const throw() { return data.size(); }
inline const std::vector<EnvCurve> const getData() throw() { return data; }
inline const std::vector<EnvCurve> const getData() const throw() { return data; }
inline const std::vector<EnvCurve> getData() throw() { return data; }
inline const std::vector<EnvCurve> getData() const throw() { return data; }
EnvCurveList blend(EnvCurveList const& other, float fraction) const throw();