mirror of
https://github.com/g-truc/glm.git
synced 2024-11-23 01:14:34 +00:00
Fixed assert error typo in quaternion.inl
Changed v to l, as unknown variable v was causing compile errors in user code.
This commit is contained in:
parent
6881e1bb90
commit
cfd0bd6e13
@ -92,7 +92,7 @@ namespace detail
|
||||
z(static_cast<T>(l.begin()[2])),
|
||||
w(static_cast<T>(l.begin()[3]))
|
||||
{
|
||||
assert(v.size() >= this->length());
|
||||
assert(l.size() >= this->length());
|
||||
}
|
||||
#endif//GLM_HAS_INITIALIZER_LISTS
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user