C++: More QLDoc refinement.

This commit is contained in:
Geoffrey White
2024-03-28 15:26:21 +00:00
parent 03d0d984e3
commit 5618001c3f

View File

@@ -38,10 +38,14 @@ module Input implements InputSig<DataFlowImplSpecific::CppDataFlow> {
}
string encodeWithoutContent(ContentSet c, string arg) {
// used for type tracking, not currently used in C/C++.
result = "WithoutContent" + c and arg = ""
}
string encodeWithContent(ContentSet c, string arg) { result = "WithContent" + c and arg = "" }
string encodeWithContent(ContentSet c, string arg) {
// used for type tracking, not currently used in C/C++.
result = "WithContent" + c and arg = ""
}
/**
* Decodes an argument / parameter position string, for example the `0` in `Argument[0]`.