Skip to content

Commit

Permalink
Add space between string literal and a macro
Browse files Browse the repository at this point in the history
C++11 parser treats tokens after the closing quote mark as a literal specifiers
  • Loading branch information
pavelkryukov committed Sep 9, 2018
1 parent 484eff1 commit a472786
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions common.h.in
Expand Up @@ -48,11 +48,11 @@ typedef char bool;
#endif

#ifdef __llvm__
#define CEN64_COMPILER "llvm-"stringify(__clang_major__)"." \
stringify(__clang_minor__)"."stringify(__clang_patchlevel__)
#define CEN64_COMPILER "llvm-" stringify(__clang_major__)"." \
stringify(__clang_minor__)"." stringify(__clang_patchlevel__)
#elif defined(__GNUC__)
#define CEN64_COMPILER "gcc-"stringify(__GNUC__)"." \
stringify(__GNUC_MINOR__)"."stringify(__GNUC_PATCHLEVEL__)
#define CEN64_COMPILER "gcc-" stringify(__GNUC__)"." \
stringify(__GNUC_MINOR__)"." stringify(__GNUC_PATCHLEVEL__)
#elif defined(_MSC_VER)
#if _MSC_VER < 1300
#define CEN64_COMPILER "MSVC 6.0"
Expand Down

0 comments on commit a472786

Please sign in to comment.