summaryrefslogtreecommitdiff
path: root/src/LinearMath/btVector3.cpp
diff options
context:
space:
mode:
authorErwin Coumans <erwincoumans@replicant.com>2014-11-02 14:12:54 -0800
committerErwin Coumans <erwincoumans@replicant.com>2014-11-02 14:12:54 -0800
commitba0dd676aa7e1f57cdec1c02d653e9eb58b9325e (patch)
tree7735e29b0f0ee1291d6f946c26d0bb454d6c85d2 /src/LinearMath/btVector3.cpp
parent5264fc300634973be545b137d98ea11b1bbb1862 (diff)
downloadbullet3-ba0dd676aa7e1f57cdec1c02d653e9eb58b9325e.tar.gz
comment-out the memset in DEBUG mode in btVector3.cpp and b3Vector3.cpp
Diffstat (limited to 'src/LinearMath/btVector3.cpp')
-rw-r--r--src/LinearMath/btVector3.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LinearMath/btVector3.cpp b/src/LinearMath/btVector3.cpp
index 80c7055d5..e05bdccd6 100644
--- a/src/LinearMath/btVector3.cpp
+++ b/src/LinearMath/btVector3.cpp
@@ -63,7 +63,7 @@ long _maxdot_large( const float *vv, const float *vec, unsigned long count, floa
float4 stack_array[ STACK_ARRAY_COUNT ];
#if DEBUG
- memset( stack_array, -1, STACK_ARRAY_COUNT * sizeof(stack_array[0]) );
+ //memset( stack_array, -1, STACK_ARRAY_COUNT * sizeof(stack_array[0]) );
#endif
size_t index;
@@ -448,7 +448,7 @@ long _mindot_large( const float *vv, const float *vec, unsigned long count, floa
float4 stack_array[ STACK_ARRAY_COUNT ];
#if DEBUG
- memset( stack_array, -1, STACK_ARRAY_COUNT * sizeof(stack_array[0]) );
+ //memset( stack_array, -1, STACK_ARRAY_COUNT * sizeof(stack_array[0]) );
#endif
size_t index;