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

Sybren A. Stüvel noreply at git.blender.org
Thu Nov 28 17:55:27 CET 2019


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

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