Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5618001

Browse files
committed
C++: More QLDoc refinement.
1 parent 03d0d98 commit 5618001

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

cpp/ql/lib/semmle/code/cpp/dataflow/internal/FlowSummaryImpl.qll

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,14 @@ module Input implements InputSig<DataFlowImplSpecific::CppDataFlow> {
3838
}
3939

4040
string encodeWithoutContent(ContentSet c, string arg) {
41+
// used for type tracking, not currently used in C/C++.
4142
result = "WithoutContent" + c and arg = ""
4243
}
4344

44-
string encodeWithContent(ContentSet c, string arg) { result = "WithContent" + c and arg = "" }
45+
string encodeWithContent(ContentSet c, string arg) {
46+
// used for type tracking, not currently used in C/C++.
47+
result = "WithContent" + c and arg = ""
48+
}
4549

4650
/**
4751
* Decodes an argument / parameter position string, for example the `0` in `Argument[0]`.

0 commit comments

Comments
 (0)