From 4e417eb3dc34e9ea44cb8684ddb473538f45c0df Mon Sep 17 00:00:00 2001 From: Sam Grove Date: Wed, 26 Apr 2017 17:51:24 -0500 Subject: [PATCH] [platform] fix doxygen preprocessor constant expresison warnings --- platform/mbed_application.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/mbed_application.h b/platform/mbed_application.h index 6ee0bfd07d..77a6c45cb3 100644 --- a/platform/mbed_application.h +++ b/platform/mbed_application.h @@ -21,7 +21,7 @@ #include -#define MBED_APPLICATION_SUPPORT (defined(__CORTEX_M3) || defined(__CORTEX_M4) || defined(__CORTEX_M7)) +#define MBED_APPLICATION_SUPPORT defined(__CORTEX_M3) || defined(__CORTEX_M4) || defined(__CORTEX_M7) #if MBED_APPLICATION_SUPPORT #ifdef __cplusplus extern "C" {