Fix query_config macro expansion for windows

This commit is contained in:
Andres Amaya Garcia 2018-10-30 21:52:53 +00:00
parent c84a65da9d
commit 5bc6e92b70
2 changed files with 8 additions and 0 deletions

View File

@ -107,8 +107,12 @@
#include <string.h> #include <string.h>
/* Helper macros to convert a macro or its expansion into a string */ /* Helper macros to convert a macro or its expansion into a string */
#if defined(_MSC_VER)
#define MACRO_EXPANSION_TO_STR(macro) strlen( #macro ) > 0 ? #macro "\n" : ""
#else
#define MACRO_EXPANSION_TO_STR(macro) MACRO_NAME_TO_STR(macro) #define MACRO_EXPANSION_TO_STR(macro) MACRO_NAME_TO_STR(macro)
#define MACRO_NAME_TO_STR(macro) strlen( #macro ) > 0 ? #macro "\n" : "" #define MACRO_NAME_TO_STR(macro) strlen( #macro ) > 0 ? #macro "\n" : ""
#endif /* _MSC_VER */
int query_config( const char *config ) int query_config( const char *config )
{ {

View File

@ -107,8 +107,12 @@
#include <string.h> #include <string.h>
/* Helper macros to convert a macro or its expansion into a string */ /* Helper macros to convert a macro or its expansion into a string */
#if defined(_MSC_VER)
#define MACRO_EXPANSION_TO_STR(macro) strlen( #macro ) > 0 ? #macro "\n" : ""
#else
#define MACRO_EXPANSION_TO_STR(macro) MACRO_NAME_TO_STR(macro) #define MACRO_EXPANSION_TO_STR(macro) MACRO_NAME_TO_STR(macro)
#define MACRO_NAME_TO_STR(macro) strlen( #macro ) > 0 ? #macro "\n" : "" #define MACRO_NAME_TO_STR(macro) strlen( #macro ) > 0 ? #macro "\n" : ""
#endif /* _MSC_VER */
int query_config( const char *config ) int query_config( const char *config )
{ {