diff --git a/cpp/src/Defs.h b/cpp/src/Defs.h index 5795f871..9f1b67e8 100644 --- a/cpp/src/Defs.h +++ b/cpp/src/Defs.h @@ -66,14 +66,14 @@ #ifdef _MSC_VER #define OPENZWAVE_DEPRECATED_WARNINGS_OFF __pragma( warning(push) )\ - __pragma( warning(disable: 4996) + __pragma( warning(disable: 4996) ) #else #define OPENZWAVE_DEPRECATED_WARNINGS_OFF _Pragma ( "GCC diagnostic push" )\ - _Pragma ( "GCC diagnostic ignored \"-Wdeprecated-declarations\"" ) + _Pragma ( "GCC diagnostic ignored \"-Wdeprecated-declarations\"" ) #endif #ifdef _MSC_VER -#define OPENZWAVE_DEPRECATED_WARNINGS_ON __pragma( warning(pop)) +#define OPENZWAVE_DEPRECATED_WARNINGS_ON __pragma( warning(pop) ) #else #define OPENZWAVE_DEPRECATED_WARNINGS_ON _Pragma ( "GCC diagnostic pop" ) #endif