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/BKE_asset_catalog_path.hh
parent2e6c6426d3662302e7a9832d59f4d3bf20bf1ef2 (diff)
Cleanup: Asset Catalog Paths, move default constructor to header file
No functional changes.
Diffstat (limited to 'source/blender/blenkernel/BKE_asset_catalog_path.hh')
-rw-r--r--source/blender/blenkernel/BKE_asset_catalog_path.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_asset_catalog_path.hh b/source/blender/blenkernel/BKE_asset_catalog_path.hh
index b150f805ed5..68b9e943e94 100644
--- a/source/blender/blenkernel/BKE_asset_catalog_path.hh
+++ b/source/blender/blenkernel/BKE_asset_catalog_path.hh
@@ -65,7 +65,7 @@ class AssetCatalogPath {
AssetCatalogPath(StringRef path);
AssetCatalogPath(const std::string &path);
AssetCatalogPath(const char *path);
- AssetCatalogPath(const AssetCatalogPath &other_path);
+ AssetCatalogPath(const AssetCatalogPath &other_path) = default;
AssetCatalogPath(AssetCatalogPath &&other_path) noexcept;
~AssetCatalogPath() = default;