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-08-02 12:15:50 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-08-02 12:15:50 +0300
commit06cb48e1b284e6438ce14f1ea543143fcc74ca59 (patch)
tree8e73a3486884a13043b573c0a16f427ecfa1416e
parent1f0d6f763573b22772dcdb61320a12e1c11949e0 (diff)
Cleanup: Asset catalogs, C++ to C-style comments
No functional changes.
-rw-r--r--source/blender/blenkernel/BKE_asset_catalog.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_asset_catalog.hh b/source/blender/blenkernel/BKE_asset_catalog.hh
index 82449bcdbcc..981c5338469 100644
--- a/source/blender/blenkernel/BKE_asset_catalog.hh
+++ b/source/blender/blenkernel/BKE_asset_catalog.hh
@@ -52,14 +52,14 @@ class AssetCatalogService {
/* TODO(@sybren): determine which properties should be private / get accessors. */
- // These pointers are owned by this AssetCatalogService.
+ /* These pointers are owned by this AssetCatalogService. */
Map<CatalogID, std::unique_ptr<AssetCatalog>> catalogs;
std::unique_ptr<AssetCatalogDefinitionFile> catalog_definition_file;
public:
AssetCatalogService();
- // Return nullptr if not found.
+ /* Return nullptr if not found. */
AssetCatalog *find_catalog(const CatalogID &catalog_id);
void load_from_disk(const CatalogFilePath &asset_library_root);