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:
Diffstat (limited to 'source/blender/editors/uvedit/uvedit_parametrizer.c')
-rw-r--r--source/blender/editors/uvedit/uvedit_parametrizer.c30
1 files changed, 7 insertions, 23 deletions
diff --git a/source/blender/editors/uvedit/uvedit_parametrizer.c b/source/blender/editors/uvedit/uvedit_parametrizer.c
index f6485fdef5d..8d30dc19732 100644
--- a/source/blender/editors/uvedit/uvedit_parametrizer.c
+++ b/source/blender/editors/uvedit/uvedit_parametrizer.c
@@ -43,29 +43,13 @@
/* Utils */
-#if 0
-# define param_assert(condition)
-# define param_warning(message)
-# define param_test_equals_ptr(condition)
-# define param_test_equals_int(condition)
-#else
-# define param_assert(condition) \
- if (!(condition)) { /*printf("Assertion %s:%d\n", __FILE__, __LINE__); abort();*/ \
- } \
- (void)0
-# define param_warning(message) \
- {/*printf("Warning %s:%d: %s\n", __FILE__, __LINE__, message);*/}(void)0
-# if 0
-# define param_test_equals_ptr(str, a, b) \
- if (a != b) { /*printf("Equals %s => %p != %p\n", str, a, b);*/ \
- } \
- (void)0
-# define param_test_equals_int(str, a, b) \
- if (a != b) { /*printf("Equals %s => %d != %d\n", str, a, b);*/ \
- } \
- (void)0
-# endif
-#endif
+#define param_assert(condition) \
+ if (!(condition)) { /*printf("Assertion %s:%d\n", __FILE__, __LINE__); abort();*/ \
+ } \
+ (void)0
+#define param_warning(message) \
+ {/*printf("Warning %s:%d: %s\n", __FILE__, __LINE__, message);*/}(void)0
+
typedef enum PBool {
P_TRUE = 1,
P_FALSE = 0,