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:
Jeroen Ketema
2023-08-03 18:20:36 +02:00
parent e271c7e5e7
commit 0fceecee6d
4 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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