simplify the move constructors / move assignment operators' noexcept ifdefs

This commit is contained in:
Mamadou Babaei
2022-12-02 12:35:07 +01:00
parent 9ea20a2bc8
commit e215d7192f
64 changed files with 544 additions and 544 deletions
@@ -88,9 +88,9 @@ public:
* The move constructor
*/
FSGThumperCommandImpl(FSGThumperCommandImpl&& Rhs)
#if ENGINE_MAJOR_VERSION == 5 || ( ENGINE_MAJOR_VERSION == 4 && ENGINE_MINOR_VERSION > 24 && SG_CPP17 )
#if SG_CPP17
noexcept
#endif /* ENGINE_MAJOR_VERSION == 5 || ( ENGINE_MAJOR_VERSION == 4 && ENGINE_MINOR_VERSION > 24 && SG_CPP17 ) */
#endif /* SG_CPP17 */
;
public:
@@ -109,9 +109,9 @@ public:
* The move assignment operator.
*/
FSGThumperCommandImpl& operator=(FSGThumperCommandImpl&& Rhs)
#if ENGINE_MAJOR_VERSION == 5 || ( ENGINE_MAJOR_VERSION == 4 && ENGINE_MINOR_VERSION > 24 && SG_CPP17 )
#if SG_CPP17
noexcept
#endif /* ENGINE_MAJOR_VERSION == 5 || ( ENGINE_MAJOR_VERSION == 4 && ENGINE_MINOR_VERSION > 24 && SG_CPP17 ) */
#endif /* SG_CPP17 */
;
public: