Skip to content
Snippets Groups Projects
Commit baf3a745 authored by rswindell's avatar rswindell
Browse files

Do not use the GNU C __VERSION__ macro (much too long).

parent 8227aa17
No related branches found
No related tags found
No related merge requests found
......@@ -83,10 +83,6 @@ extern "C" {
#define DESCRIBE_COMPILER(str) SAFEPRINTF(str,"MSC %u", _MSC_VER);
#elif defined(__GNUC__) && defined(__VERSION__)
#define DESCRIBE_COMPILER(str) SAFEPRINTF(str,"GCC %s", __VERSION__);
#elif defined(__GNUC__) && defined(__GNUC_PATCHLEVEL__)
#define DESCRIBE_COMPILER(str) SAFEPRINTF3(str,"GCC %u.%u.%u" \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment