simplify the move constructors / move assignment operators' noexcept ifdefs
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user