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/depsgraph/intern/debug/deg_debug.h')
-rw-r--r--source/blender/depsgraph/intern/debug/deg_debug.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/source/blender/depsgraph/intern/debug/deg_debug.h b/source/blender/depsgraph/intern/debug/deg_debug.h
index 1cdcba9b8fd..3e4da644641 100644
--- a/source/blender/depsgraph/intern/debug/deg_debug.h
+++ b/source/blender/depsgraph/intern/debug/deg_debug.h
@@ -32,25 +32,25 @@
namespace DEG {
#define DEG_DEBUG_PRINTF(depsgraph, type, ...) \
- do { \
- if (DEG_debug_flags_get(depsgraph) & G_DEBUG_DEPSGRAPH_ ## type) { \
- DEG_debug_print_begin(depsgraph); \
- fprintf(stdout, __VA_ARGS__); \
- } \
- } while (0)
+ do { \
+ if (DEG_debug_flags_get(depsgraph) & G_DEBUG_DEPSGRAPH_##type) { \
+ DEG_debug_print_begin(depsgraph); \
+ fprintf(stdout, __VA_ARGS__); \
+ } \
+ } while (0)
#define DEG_GLOBAL_DEBUG_PRINTF(type, ...) \
- do { \
- if (G.debug & G_DEBUG_DEPSGRAPH_ ## type) { \
- fprintf(stdout, __VA_ARGS__); \
- } \
- } while (0)
-
-#define DEG_ERROR_PRINTF(...) \
- do { \
- fprintf(stderr, __VA_ARGS__); \
- fflush(stderr); \
- } while (0)
+ do { \
+ if (G.debug & G_DEBUG_DEPSGRAPH_##type) { \
+ fprintf(stdout, __VA_ARGS__); \
+ } \
+ } while (0)
+
+#define DEG_ERROR_PRINTF(...) \
+ do { \
+ fprintf(stderr, __VA_ARGS__); \
+ fflush(stderr); \
+ } while (0)
bool terminal_do_color(void);
string color_for_pointer(const void *pointer);