File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
# cpp11 (development version)
2
2
3
+ * Silenced an unknown attribute warning specific to the Intel compiler
4
+ (r-lib/systemfonts #98 ).
5
+
3
6
# cpp11 0.4.3
4
7
5
8
* Modernized the GitHub Actions workflows and updated some internal tests to
Original file line number Diff line number Diff line change 13
13
#include " Rinternals.h"
14
14
15
15
// clang-format off
16
- #ifdef __clang__
16
+ #if defined(__INTEL_COMPILER)
17
+ # pragma warning(disable : 3924)
18
+ #endif
19
+
20
+ #if defined(__clang__)
17
21
# pragma clang diagnostic push
18
22
# pragma clang diagnostic ignored "-Wattributes"
19
23
#endif
20
24
21
- #ifdef __GNUC__
25
+ #if defined( __GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER)
22
26
# pragma GCC diagnostic push
23
27
# pragma GCC diagnostic ignored "-Wattributes"
24
28
#endif
You can’t perform that action at this time.
0 commit comments