mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-13 13:35:14 +01:00
Merge pull request #3185 from lioncash/vec-index
vector_math: Return by const reference for const operator[]
This commit is contained in:
commit
79e246d82f
@ -131,7 +131,7 @@ public:
|
|||||||
{
|
{
|
||||||
return *((&x) + i);
|
return *((&x) + i);
|
||||||
}
|
}
|
||||||
T operator[](const int i) const {
|
const T& operator[](const int i) const {
|
||||||
return *((&x) + i);
|
return *((&x) + i);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -288,7 +288,7 @@ public:
|
|||||||
{
|
{
|
||||||
return *((&x) + i);
|
return *((&x) + i);
|
||||||
}
|
}
|
||||||
T operator[](const int i) const {
|
const T& operator[](const int i) const {
|
||||||
return *((&x) + i);
|
return *((&x) + i);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -502,7 +502,7 @@ public:
|
|||||||
{
|
{
|
||||||
return *((&x) + i);
|
return *((&x) + i);
|
||||||
}
|
}
|
||||||
T operator[](const int i) const {
|
const T& operator[](const int i) const {
|
||||||
return *((&x) + i);
|
return *((&x) + i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user