Browse Source

Fixed assert error typo in quaternion.inl

Changed v to l, as unknown variable v was causing compile errors in user code.
Dustin Biser 12 years ago
parent
commit
cfd0bd6e13
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/gtc/quaternion.inl

+ 1 - 1
glm/gtc/quaternion.inl

@@ -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