[Bf-blender-cvs] [ce3ec2f1725] functions: remove print

Jacques Lucke noreply at git.blender.org
Mon Jan 27 22:09:46 CET 2020


Commit: ce3ec2f1725773597e6861af15217a0e22015210
Author: Jacques Lucke
Date:   Thu Jan 23 16:01:55 2020 +0100
Branches: functions
https://developer.blender.org/rBce3ec2f1725773597e6861af15217a0e22015210

remove print

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

M	source/blender/blenlib/BLI_array_allocator.h

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

diff --git a/source/blender/blenlib/BLI_array_allocator.h b/source/blender/blenlib/BLI_array_allocator.h
index 8393a9125d5..84a1a0a74b3 100644
--- a/source/blender/blenlib/BLI_array_allocator.h
+++ b/source/blender/blenlib/BLI_array_allocator.h
@@ -50,9 +50,6 @@ class ArrayAllocator : NonCopyable, NonMovable {
     BLI_assert(alignment <= 64);
     UNUSED_VARS_NDEBUG(alignment);
 
-    std::cout << "Allocate array - Length: " << m_array_size << "  Element Size: " << element_size
-              << "\n";
-
     Stack<void *> &stack = this->stack_for_element_size(element_size);
     if (stack.is_empty()) {
       void *new_buffer = MEM_mallocN_aligned(



More information about the Bf-blender-cvs mailing list