Browse Source

Fixed build

Christophe Riccio 11 years ago
parent
commit
34a98b5220
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/detail/func_geometric.inl

+ 1 - 1
glm/detail/func_geometric.inl

@@ -186,6 +186,6 @@ namespace detail
 
 		T const dotValue(dot(N, I));
 		T const k(static_cast<T>(1) - eta * eta * (static_cast<T>(1) - dotValue * dotValue));
-		return (eta * I - (eta * dotValue + std::sqrt(k)) * N) * static_cast<genType>(k >= static_cast<genType>(0));
+		return (eta * I - (eta * dotValue + std::sqrt(k)) * N) * static_cast<T>(k >= static_cast<T>(0));
 	}
 }//namespace glm