fix(Core/Misc): Remove c++ check for c++11 (#10439)

This commit is contained in:
Kitzunu
2022-02-04 19:00:33 +01:00
committed by GitHub
parent ad64a26077
commit f4c6a4ce27
4 changed files with 0 additions and 12 deletions

View File

@@ -79,12 +79,9 @@ namespace Movement
MoveSplineFlag() { raw() = 0; }
MoveSplineFlag(uint32 f) { raw() = f; }
MoveSplineFlag(const MoveSplineFlag& f) { raw() = f.raw(); }
/* requried as of C++ 11 */
#if __cplusplus >= 201103L
MoveSplineFlag(MoveSplineFlag&&) = default;
MoveSplineFlag& operator=(const MoveSplineFlag&) = default;
MoveSplineFlag& operator=(MoveSplineFlag&&) = default;
#endif
// Constant interface