Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore: integrate release 2.3.1 #215

Merged
merged 4 commits into from
Mar 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: set RTM_COMPILER_CLANG to __clang_major__ when defined
  • Loading branch information
nfrechette committed Mar 16, 2024
commit a5ca7f111fc90e1d678c870ed1fbd1a1c916329d
2 changes: 1 addition & 1 deletion includes/rtm/impl/detect_compiler.h
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@
#if defined(__GNUG__) && !defined(__clang__)
#define RTM_COMPILER_GCC
#elif defined(__clang__)
#define RTM_COMPILER_CLANG
#define RTM_COMPILER_CLANG __clang_major__
#elif defined(_MSC_VER) && !defined(__clang__)
#define RTM_COMPILER_MSVC _MSC_VER
#define RTM_COMPILER_MSVC_2013 1800