Jorrit Rouwe пре 4 година
родитељ
комит
d90e396a7d
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      Jolt/Core/Result.h

+ 2 - 2
Jolt/Core/Result.h

@@ -59,7 +59,7 @@ public:
 						~Result()									{ Clear(); }
 
 	/// Copy assignment
-	Result<Type> &		operator = (const Result<Type> &inRHS) noexcept
+	Result<Type> &		operator = (const Result<Type> &inRHS)
 	{
 		Clear();
 
@@ -83,7 +83,7 @@ public:
 	}
 
 	/// Move assignment
-	Result<Type> &		operator = (Result<Type> &&inRHS)
+	Result<Type> &		operator = (Result<Type> &&inRHS) noexcept
 	{
 		Clear();