[Bf-blender-cvs] [d944a28317f] temp-sybren-usd-patch: USD: changed C++ to C comments

Sybren A. Stüvel noreply at git.blender.org
Tue Nov 26 18:07:04 CET 2019


Commit: d944a28317f7cf93cc35dbf110677dd0a3ff7021
Author: Sybren A. Stüvel
Date:   Tue Nov 26 12:32:39 2019 +0100
Branches: temp-sybren-usd-patch
https://developer.blender.org/rBd944a28317f7cf93cc35dbf110677dd0a3ff7021

USD: changed C++ to C comments

===================================================================

M	source/blender/usd/intern/abstract_hierarchy_iterator.h

===================================================================

diff --git a/source/blender/usd/intern/abstract_hierarchy_iterator.h b/source/blender/usd/intern/abstract_hierarchy_iterator.h
index 8dde8c90439..5f1149400ce 100644
--- a/source/blender/usd/intern/abstract_hierarchy_iterator.h
+++ b/source/blender/usd/intern/abstract_hierarchy_iterator.h
@@ -124,14 +124,14 @@ class AbstractHierarchyWriter {
  */
 class AbstractHierarchyIterator {
  public:
-  // Mapping from export path to writer.
+  /* Mapping from export path to writer. */
   typedef std::map<std::string, AbstractHierarchyWriter *> WriterMap;
-  // Pair of a duplicated object and its duplicator, typically a pair of HierarchyContext::object
-  // and HierarchyContext::duplicator.
+  /* Pair of a duplicated object and its duplicator, typically a pair of HierarchyContext::object
+   * and HierarchyContext::duplicator. */
   typedef std::pair<Object *, Object *> DupliAndDuplicator;
-  // Mapping from an object and its duplicator to the object's export-children.
+  /* Mapping from an object and its duplicator to the object's export-children. */
   typedef std::map<DupliAndDuplicator, std::set<HierarchyContext *>> ExportGraph;
-  // Mapping from duplicator ID to export path.
+  /* Mapping from duplicator ID to export path. */
   typedef std::map<ID *, std::string> ExportPathMap;
 
  protected:



More information about the Bf-blender-cvs mailing list