We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 417def8 commit 9e46239Copy full SHA for 9e46239
1 file changed
cpp/ql/lib/semmle/code/cpp/models/implementations/Printf.qll
@@ -23,8 +23,6 @@ private class Printf extends FormattingFunction, AliasFunction {
23
24
override int getFormatParameterIndex() { result = 0 }
25
26
- deprecated override predicate isWideCharDefault() { hasName(["wprintf", "wprintf_s"]) }
27
-
28
override predicate isOutputGlobal() { any() }
29
30
override predicate parameterNeverEscapes(int n) { n = 0 }
@@ -49,8 +47,6 @@ private class Fprintf extends FormattingFunction {
49
47
50
48
override int getFormatParameterIndex() { result = 1 }
51
52
- deprecated override predicate isWideCharDefault() { hasName("fwprintf") }
53
54
override int getOutputParameterIndex(boolean isStream) { result = 0 and isStream = true }
55
}
56
0 commit comments