summaryrefslogtreecommitdiff
path: root/quantum/variable_trace.h
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2019-08-30 11:19:03 -0700
committerFlorian Didron <fdidron@users.noreply.github.com>2019-10-01 10:21:12 +0900
commit93f6749e06b70ba81e15f8b77e5a18675dacddfe (patch)
treefcf75ef930800a948e5a3ba015d6759889f2284d /quantum/variable_trace.h
parentda34bddba16ba7a8495dc30bfe4542551ba87ed4 (diff)
clang-format changes
Diffstat (limited to 'quantum/variable_trace.h')
-rw-r--r--quantum/variable_trace.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/quantum/variable_trace.h b/quantum/variable_trace.h
index dacc13858d..26b810d3cd 100644
--- a/quantum/variable_trace.h
+++ b/quantum/variable_trace.h
@@ -26,20 +26,19 @@
// Start tracing a variable at the memory address addr
// The name can be anything and is used only for reporting
// The size should usually be the same size as the variable you are interested in
-#define ADD_TRACED_VARIABLE(name, addr, size) \
- add_traced_variable(PSTR(name), (void*)addr, size, PSTR(__FILE__), __LINE__)
+# define ADD_TRACED_VARIABLE(name, addr, size) add_traced_variable(PSTR(name), (void*)addr, size, PSTR(__FILE__), __LINE__)
// Stop tracing the variable with the given name
-#define REMOVE_TRACED_VARIABLE(name) remove_traced_variable(PSTR(name), PSTR(__FILE__), __LINE__)
+# define REMOVE_TRACED_VARIABLE(name) remove_traced_variable(PSTR(name), PSTR(__FILE__), __LINE__)
// Call to get messages when the variable has been changed
-#define VERIFY_TRACED_VARIABLES() verify_traced_variables(PSTR(__FILE__), __LINE__)
+# define VERIFY_TRACED_VARIABLES() verify_traced_variables(PSTR(__FILE__), __LINE__)
#else
-#define ADD_TRACED_VARIABLE(name, addr, size)
-#define REMOVE_TRACED_VARIABLE(name)
-#define VERIFY_TRACED_VARIABLES()
+# define ADD_TRACED_VARIABLE(name, addr, size)
+# define REMOVE_TRACED_VARIABLE(name)
+# define VERIFY_TRACED_VARIABLES()
#endif