Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03d0d98 commit 5618001Copy full SHA for 5618001
1 file changed
cpp/ql/lib/semmle/code/cpp/dataflow/internal/FlowSummaryImpl.qll
@@ -38,10 +38,14 @@ module Input implements InputSig<DataFlowImplSpecific::CppDataFlow> {
38
}
39
40
string encodeWithoutContent(ContentSet c, string arg) {
41
+ // used for type tracking, not currently used in C/C++.
42
result = "WithoutContent" + c and arg = ""
43
44
- string encodeWithContent(ContentSet c, string arg) { result = "WithContent" + c and arg = "" }
45
+ string encodeWithContent(ContentSet c, string arg) {
46
47
+ result = "WithContent" + c and arg = ""
48
+ }
49
50
/**
51
* Decodes an argument / parameter position string, for example the `0` in `Argument[0]`.
0 commit comments