[Bf-blender-cvs] [93641b7866e] temp-cpp-type-cleanup: improve comment

Jacques Lucke noreply at git.blender.org
Sun Jun 27 17:07:05 CEST 2021


Commit: 93641b7866ee68590cef9d7359cb51e09a9cd703
Author: Jacques Lucke
Date:   Sun Jun 27 16:28:43 2021 +0200
Branches: temp-cpp-type-cleanup
https://developer.blender.org/rB93641b7866ee68590cef9d7359cb51e09a9cd703

improve comment

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

M	source/blender/functions/FN_cpp_type.hh

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

diff --git a/source/blender/functions/FN_cpp_type.hh b/source/blender/functions/FN_cpp_type.hh
index dd772671a1e..70fd9131da5 100644
--- a/source/blender/functions/FN_cpp_type.hh
+++ b/source/blender/functions/FN_cpp_type.hh
@@ -19,10 +19,9 @@
 /** \file
  * \ingroup fn
  *
- * The CPPType class is the core of the runtime-type-system used by the functions system. It can
- * represent C++ types that are default-constructible, destructible, movable, copyable,
- * equality comparable and hashable. In the future we might want to make some of these properties
- * optional.
+ * The `CPPType` class is the core of a runtime-type-system. It allows working with arbitrary C++
+ * types in a generic way. An instance of `CPPType` wraps exactly one type like `int` or
+ * `std::string`.
  *
  * Every type has a size and an alignment. Every function dealing with C++ types in a generic way,
  * has to make sure that alignment rules are followed. The methods provided by a CPPType instance



More information about the Bf-blender-cvs mailing list