Browse Source

Fixed build

Christophe Riccio 10 years ago
parent
commit
5cd49977e6
4 changed files with 8 additions and 8 deletions
  1. 2 2
      glm/detail/type_vec1.hpp
  2. 2 2
      glm/detail/type_vec2.hpp
  3. 2 2
      glm/detail/type_vec3.hpp
  4. 2 2
      glm/detail/type_vec4.hpp

+ 2 - 2
glm/detail/type_vec1.hpp

@@ -315,10 +315,10 @@ namespace glm
 	GLM_FUNC_DECL bool operator!=(tvec1<T, P> const & v1, tvec1<T, P> const & v2);
 	GLM_FUNC_DECL bool operator!=(tvec1<T, P> const & v1, tvec1<T, P> const & v2);
 
 
 	template <precision P>
 	template <precision P>
-	GLM_FUNC_DECL bool operator&&(tvec1<bool, P> const & v1, tvec1<bool, P> const & v2);
+	GLM_FUNC_DECL tvec1<bool, P> operator&&(tvec1<bool, P> const & v1, tvec1<bool, P> const & v2);
 
 
 	template <precision P>
 	template <precision P>
-	GLM_FUNC_DECL bool operator||(tvec1<bool, P> const & v1, tvec1<bool, P> const & v2);
+	GLM_FUNC_DECL tvec1<bool, P> operator||(tvec1<bool, P> const & v1, tvec1<bool, P> const & v2);
 
 
 	// -- Is type --
 	// -- Is type --
 
 

+ 2 - 2
glm/detail/type_vec2.hpp

@@ -407,10 +407,10 @@ namespace glm
 	GLM_FUNC_DECL bool operator!=(tvec2<T, P> const & v1, tvec2<T, P> const & v2);
 	GLM_FUNC_DECL bool operator!=(tvec2<T, P> const & v1, tvec2<T, P> const & v2);
 
 
 	template <precision P>
 	template <precision P>
-	GLM_FUNC_DECL bool operator&&(tvec2<bool, P> const & v1, tvec2<bool, P> const & v2);
+	GLM_FUNC_DECL tvec2<bool, P> operator&&(tvec2<bool, P> const & v1, tvec2<bool, P> const & v2);
 
 
 	template <precision P>
 	template <precision P>
-	GLM_FUNC_DECL bool operator||(tvec2<bool, P> const & v1, tvec2<bool, P> const & v2);
+	GLM_FUNC_DECL tvec2<bool, P> operator||(tvec2<bool, P> const & v1, tvec2<bool, P> const & v2);
 
 
 	// -- Is type --
 	// -- Is type --
 
 

+ 2 - 2
glm/detail/type_vec3.hpp

@@ -430,10 +430,10 @@ namespace glm
 	GLM_FUNC_DECL bool operator!=(tvec3<T, P> const & v1, tvec3<T, P> const & v2);
 	GLM_FUNC_DECL bool operator!=(tvec3<T, P> const & v1, tvec3<T, P> const & v2);
 
 
 	template <precision P>
 	template <precision P>
-	GLM_FUNC_DECL bool operator&&(tvec3<bool, P> const & v1, tvec3<bool, P> const & v2);
+	GLM_FUNC_DECL tvec3<bool, P> operator&&(tvec3<bool, P> const & v1, tvec3<bool, P> const & v2);
 
 
 	template <precision P>
 	template <precision P>
-	GLM_FUNC_DECL bool operator||(tvec3<bool, P> const & v1, tvec3<bool, P> const & v2);
+	GLM_FUNC_DECL tvec3<bool, P> operator||(tvec3<bool, P> const & v1, tvec3<bool, P> const & v2);
 
 
 	// -- Is type --
 	// -- Is type --
 
 

+ 2 - 2
glm/detail/type_vec4.hpp

@@ -543,10 +543,10 @@ namespace detail
 	GLM_FUNC_DECL bool operator!=(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
 	GLM_FUNC_DECL bool operator!=(tvec4<T, P> const & v1, tvec4<T, P> const & v2);
 
 
 	template <precision P>
 	template <precision P>
-	GLM_FUNC_DECL bool operator&&(tvec4<bool, P> const & v1, tvec4<bool, P> const & v2);
+	GLM_FUNC_DECL tvec4<bool, P> operator&&(tvec4<bool, P> const & v1, tvec4<bool, P> const & v2);
 
 
 	template <precision P>
 	template <precision P>
-	GLM_FUNC_DECL bool operator||(tvec4<bool, P> const & v1, tvec4<bool, P> const & v2);
+	GLM_FUNC_DECL tvec4<bool, P> operator||(tvec4<bool, P> const & v1, tvec4<bool, P> const & v2);
 
 
 	// -- Is type --
 	// -- Is type --