Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-10-01 09:20:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-01 09:20:31 +0300
commitbdb7d262aadb2685f0cb7ef73840e479252e70d4 (patch)
tree6bf65fd09dc01d85a07f8422b69d91b11818ad00 /source/blender/blenkernel/intern/asset_catalog_path.cc
parentb559fb178e5063c3efd6be6b018ab50c9fd2e0d9 (diff)
Cleanup: clang-tidy warnings
Diffstat (limited to 'source/blender/blenkernel/intern/asset_catalog_path.cc')
-rw-r--r--source/blender/blenkernel/intern/asset_catalog_path.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/asset_catalog_path.cc b/source/blender/blenkernel/intern/asset_catalog_path.cc
index cc6aceef8e7..022bceb133e 100644
--- a/source/blender/blenkernel/intern/asset_catalog_path.cc
+++ b/source/blender/blenkernel/intern/asset_catalog_path.cc
@@ -38,9 +38,7 @@ AssetCatalogPath::AssetCatalogPath(const char *path) : path_(path)
{
}
-AssetCatalogPath::AssetCatalogPath(const AssetCatalogPath &other_path) : path_(other_path.path_)
-{
-}
+AssetCatalogPath::AssetCatalogPath(const AssetCatalogPath &other_path) = default;
AssetCatalogPath::AssetCatalogPath(AssetCatalogPath &&other_path) noexcept
: path_(std::move(other_path.path_))