Бранимир Караџић 3 years ago
parent
commit
60a41e4957
1 changed files with 2 additions and 2 deletions
  1. 2 2
      include/bx/inline/typetraits.inl

+ 2 - 2
include/bx/inline/typetraits.inl

@@ -142,7 +142,7 @@ namespace bx
 	}
 	}
 
 
 	template<typename Ty>
 	template<typename Ty>
-	constexpr bool isEnum()
+	inline constexpr bool isEnum()
 	{
 	{
 		return __is_enum(Ty);
 		return __is_enum(Ty);
 	}
 	}
@@ -441,7 +441,7 @@ namespace bx
 	}
 	}
 
 
 	template<typename Ty>
 	template<typename Ty>
-	constexpr RemoveReferenceType<Ty>&& move(Ty&& _a)
+	inline constexpr RemoveReferenceType<Ty>&& move(Ty&& _a)
 	{
 	{
 		return static_cast<RemoveReferenceType<Ty>&&>(_a);
 		return static_cast<RemoveReferenceType<Ty>&&>(_a);
 	}
 	}