Minor coverity issue fixes
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / rendering / vector-based / vector-blob-atlas-share.h
index d58848a..822ea3d 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_TOOLKIT_VECTOR_BLOB_ATLAS_SHARE_H
 
 /*
- * Copyright (c) 2021 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.
@@ -70,6 +70,13 @@ public:
    */
   VectorBlobAtlas* GetNewAtlas();
 
+public:
+  // Default copy and move operator
+  VectorBlobAtlasShare(const VectorBlobAtlasShare& rhs) = default;
+  VectorBlobAtlasShare(VectorBlobAtlasShare&& rhs)      = default;
+  VectorBlobAtlasShare& operator=(const VectorBlobAtlasShare& rhs) = default;
+  VectorBlobAtlasShare& operator=(VectorBlobAtlasShare&& rhs) = default;
+
 private:
   class Impl;