Skip to content

Commit

Permalink
pre-rel 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dakka committed Jun 13, 2024
1 parent 35f2b78 commit fff6ea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/srcloctest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,9 @@ int main(int argc, char **argv)
#elif defined __GNUC__
"GCC: " __VERSION__
#elif defined _MSC_VER
#define COMBINE1(X,Y) X##Y // helper macro
#define COMBINE1(X,Y) X ## Y // helper macro
#define COMBINE(X,Y) COMBINE1(X,Y)
COMBINE(MSVC,_MSC_VER)
COMBINE("MSVC: ",_MSC_VER)
#else
# error "Not Supported"
#endif
Expand Down

0 comments on commit fff6ea3

Please sign in to comment.