From d592d059139eb7818a8c975e9e0e84ff8f07cda8 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Sun, 16 Aug 2020 18:59:30 +0100 Subject: [PATCH] Github actions for MSVC --- include/etl/platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/etl/platform.h b/include/etl/platform.h index 6e075bd2..13c9df63 100644 --- a/include/etl/platform.h +++ b/include/etl/platform.h @@ -38,7 +38,7 @@ SOFTWARE. #define ETL_8BIT_SUPPORT (CHAR_BIT == 8) // Define a debug macro -#if defined(_DEBUG) || defined(DEBUG) +#if (defined(_DEBUG) || defined(DEBUG)) && !defined(ETL_DEBUG) #define ETL_DEBUG #endif