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:
authorSybren A. Stüvel <sybren@blender.org>2021-10-01 11:58:33 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-10-01 11:58:33 +0300
commitae4b45145c8b61199e7fe3d3b862cf473fe5769e (patch)
tree21634ef99e28ace1c1f18647e1177a2753f4b0ec /source/blender/blenkernel/intern/asset_catalog_path.cc
parent2e6c6426d3662302e7a9832d59f4d3bf20bf1ef2 (diff)
Cleanup: Asset Catalog Paths, move default constructor to header file
No functional changes.
Diffstat (limited to 'source/blender/blenkernel/intern/asset_catalog_path.cc')
-rw-r--r--source/blender/blenkernel/intern/asset_catalog_path.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/asset_catalog_path.cc b/source/blender/blenkernel/intern/asset_catalog_path.cc
index 022bceb133e..689a572f80b 100644
--- a/source/blender/blenkernel/intern/asset_catalog_path.cc
+++ b/source/blender/blenkernel/intern/asset_catalog_path.cc
@@ -38,8 +38,6 @@ AssetCatalogPath::AssetCatalogPath(const char *path) : path_(path)
{
}
-AssetCatalogPath::AssetCatalogPath(const AssetCatalogPath &other_path) = default;
-
AssetCatalogPath::AssetCatalogPath(AssetCatalogPath &&other_path) noexcept
: path_(std::move(other_path.path_))
{