We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0388712 commit 3c71e92Copy full SHA for 3c71e92
src/library/tools/R/check.R
@@ -6222,6 +6222,10 @@ add_dummies <- function(dir, Log)
6222
ex_re <- "BH/include/boost/.*\\[-Wdeprecated-literal-operator\\]"
6223
lines <- filtergrep(ex_re, lines, useBytes = TRUE)
6224
6225
+ ## Filter out GCC >= 12 C++23 warnings on #warning (clang does not warn)
6226
+ ex_re <- "warning:.*\\[-Wc\\+\\+23-extensions\\]"
6227
+ lines <- filtergrep(ex_re, lines, useBytes = TRUE)
6228
+
6229
## "gcc (even 9) seems not to know the size of pointers, so skip
6230
## some from -Walloc-size-larger-than= and -Wstringop-overflow="
6231
## lines <- grep("exceeds maximum object size.*-W(alloc-size-larger-than|stringop-overflow)", lines,
0 commit comments