[Bf-blender-cvs] [71b7e59e28f] temp-virtual-array-value-type: remove print

Jacques Lucke noreply at git.blender.org
Sun Oct 31 14:28:45 CET 2021


Commit: 71b7e59e28f66cd09814e980098bbb1c777111e7
Author: Jacques Lucke
Date:   Sun Oct 31 14:09:16 2021 +0100
Branches: temp-virtual-array-value-type
https://developer.blender.org/rB71b7e59e28f66cd09814e980098bbb1c777111e7

remove print

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

M	source/blender/functions/FN_generic_virtual_array.hh

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

diff --git a/source/blender/functions/FN_generic_virtual_array.hh b/source/blender/functions/FN_generic_virtual_array.hh
index 8fd010de253..1e76a7696fa 100644
--- a/source/blender/functions/FN_generic_virtual_array.hh
+++ b/source/blender/functions/FN_generic_virtual_array.hh
@@ -673,7 +673,6 @@ template<typename ImplT, typename... Args> inline void GVArrayCommon::emplace(Ar
     impl_ = &storage_.template emplace<ImplT>(std::forward<Args>(args)...);
   }
   else {
-    std::cout << typeid(ImplT).name() << "\n";
     std::shared_ptr<const GVArrayImpl> ptr = std::make_shared<ImplT>(std::forward<Args>(args)...);
     impl_ = &*ptr;
     storage_ = std::move(ptr);



More information about the Bf-blender-cvs mailing list