Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2006-06-11 00:35:54 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2006-06-11 00:35:54 +0400
commit862ac0449414365caf15ddc68baeced6ad881edf (patch)
treee577334f7e57a884729203e7cb04918c2b39c9c7 /source/blender/src/parametrizer_intern.h
parent56e2aa700117a246cb8bd4130e8b4ca65a3d0089 (diff)
Remove some more unwrapper debugging code.
Diffstat (limited to 'source/blender/src/parametrizer_intern.h')
-rw-r--r--source/blender/src/parametrizer_intern.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/src/parametrizer_intern.h b/source/blender/src/parametrizer_intern.h
index f5eeed656b8..6114ecc8696 100644
--- a/source/blender/src/parametrizer_intern.h
+++ b/source/blender/src/parametrizer_intern.h
@@ -12,15 +12,15 @@
#else
#define param_assert(condition) \
if (!(condition)) \
- { printf("Assertion %s:%d\n", __FILE__, __LINE__); abort(); }
+ { /*printf("Assertion %s:%d\n", __FILE__, __LINE__); abort();*/ }
#define param_warning(message) \
- { printf("Warning %s:%d: %s\n", __FILE__, __LINE__, message); }
+ { /*printf("Warning %s:%d: %s\n", __FILE__, __LINE__, message);*/ }
#define param_test_equals_ptr(str, a, b) \
if (a != b) \
- { printf("Equals %s => %p != %p\n", str, a, b); };
+ { /*printf("Equals %s => %p != %p\n", str, a, b);*/ };
#define param_test_equals_int(str, a, b) \
if (a != b) \
- { printf("Equals %s => %d != %d\n", str, a, b); };
+ { /*printf("Equals %s => %d != %d\n", str, a, b);*/ };
#endif
typedef enum PBool {