mirror of
https://github.com/github/codeql.git
synced 2026-04-18 05:24:01 +02:00
C++: Fix extractor options for deprecated_with_msg test
The previous extractor options no longer work, because the default assumed compiler versions have changed in the frontend.
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
static int clang421 = __has_feature(attribute_deprecated_with_message);
|
||||
// semmle-extractor-options: --gnu_version 40201 --edg --clang
|
||||
// semmle-extractor-options: --gnu_version 40201 --clang_version 30400
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
static int clang450 = __has_feature(attribute_deprecated_with_message);
|
||||
// semmle-extractor-options: --gnu_version 40500 --edg --clang
|
||||
// semmle-extractor-options: --gnu_version 40500 --clang_version 30500
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
static int gcc421 = __has_feature(attribute_deprecated_with_message);
|
||||
// semmle-extractor-options: --gnu_version 40201 --edg --clang
|
||||
// semmle-extractor-options: --gnu_version 40201
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
static int gcc450 = __has_feature(attribute_deprecated_with_message);
|
||||
// semmle-extractor-options: --gnu_version 40500 --edg --clang
|
||||
// semmle-extractor-options: --gnu_version 40500
|
||||
|
||||
Reference in New Issue
Block a user