mirror of
https://github.com/g-truc/glm.git
synced 2024-11-23 17:14:36 +00:00
Fix missing return statement in swizzle assignment operator
This commit is contained in:
parent
eb4cd987f1
commit
e166850954
@ -191,7 +191,7 @@ namespace detail
|
|||||||
typedef ValueType value_type;
|
typedef ValueType value_type;
|
||||||
|
|
||||||
struct Stub {};
|
struct Stub {};
|
||||||
_swizzle_base2& operator= (Stub const &) {}
|
_swizzle_base2& operator= (Stub const &) { return *this; }
|
||||||
|
|
||||||
value_type operator[] (size_t i) const
|
value_type operator[] (size_t i) const
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user