Skip to content
Snippets Groups Projects
Commit 8e0ac93d authored by jmz52's avatar jmz52 Committed by Scott Lahteine
Browse files

Fix 'UNUSED redefined' compiler warning (#13387)

parent 0278ad0a
Branches
Tags
No related merge requests found
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
#define NANOSECONDS_PER_CYCLE (1000000000.0 / F_CPU) #define NANOSECONDS_PER_CYCLE (1000000000.0 / F_CPU)
// Remove compiler warning on an unused variable // Remove compiler warning on an unused variable
#define UNUSED(x) ((void)(x)) #define UNUSED(X) (void)X
// Macros to make a string from a macro // Macros to make a string from a macro
#define STRINGIFY_(M) #M #define STRINGIFY_(M) #M
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment