From 566a458950ee30f60400a7624746342d19cf9695 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 10 Dec 2021 12:11:43 +1100 Subject: Cleanup: move public doc-strings into headers for 'depsgraph' - Added space below non doc-string comments to make it clear these aren't comments for the symbols directly below them. - Use doxy sections for some headers. Ref T92709 --- source/blender/depsgraph/intern/builder/deg_builder_pchanmap.cc | 3 --- 1 file changed, 3 deletions(-) (limited to 'source/blender/depsgraph/intern/builder/deg_builder_pchanmap.cc') diff --git a/source/blender/depsgraph/intern/builder/deg_builder_pchanmap.cc b/source/blender/depsgraph/intern/builder/deg_builder_pchanmap.cc index 17c2925b7f4..79f358213d3 100644 --- a/source/blender/depsgraph/intern/builder/deg_builder_pchanmap.cc +++ b/source/blender/depsgraph/intern/builder/deg_builder_pchanmap.cc @@ -30,7 +30,6 @@ namespace blender::deg { -/* Debug contents of map */ void RootPChanMap::print_debug() { map_.foreach_item([](StringRefNull key, const Set &values) { @@ -42,13 +41,11 @@ void RootPChanMap::print_debug() }); } -/* Add a mapping. */ void RootPChanMap::add_bone(const char *bone, const char *root) { map_.lookup_or_add_default(bone).add(root); } -/* Check if there's a common root bone between two bones. */ bool RootPChanMap::has_common_root(const char *bone1, const char *bone2) const { const Set *bone1_roots = map_.lookup_ptr(bone1); -- cgit v1.2.3