noexcept move for BaseHandle/InstrusivePtr/Math
[platform/core/uifw/dali-core.git] / dali / public-api / math / vector4.h
index d9bfb70..3fa22e4 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_VECTOR_4_H
 
 /*
- * Copyright (c) 2020 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2022 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -567,10 +567,10 @@ struct DALI_CORE_API Vector4
   };
 
 public:
-  Vector4(const Vector4&) = default;            ///< Default copy constructor
-  Vector4(Vector4&&)      = default;            ///< Default move constructor
-  Vector4& operator=(const Vector4&) = default; ///< Default copy assignment operator
-  Vector4& operator=(Vector4&&) = default;      ///< Default move assignment operator
+  Vector4(const Vector4&)     = default;            ///< Default copy constructor
+  Vector4(Vector4&&) noexcept = default;            ///< Default move constructor
+  Vector4& operator=(const Vector4&) = default;     ///< Default copy assignment operator
+  Vector4& operator=(Vector4&&) noexcept = default; ///< Default move assignment operator
 };
 
 /**