Fix missing return statement in swizzle assignment operator

This commit is contained in:
tszirr 2013-05-27 14:59:16 +02:00
parent eb4cd987f1
commit e166850954

View File

@ -191,7 +191,7 @@ namespace detail
typedef ValueType value_type;
struct Stub {};
_swizzle_base2& operator= (Stub const &) {}
_swizzle_base2& operator= (Stub const &) { return *this; }
value_type operator[] (size_t i) const
{