We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c100eb commit 368f438Copy full SHA for 368f438
1 file changed
cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll
@@ -2288,6 +2288,10 @@ private module ContentStars {
2288
result = "*" + repeatStars(n - 1)
2289
}
2290
2291
+ /**
2292
+ * Gets the number of stars (i.e., `*`s) needed to produce the `toString`
2293
+ * output for `c`.
2294
+ */
2295
string contentStars(Content c) { result = repeatStars(c.getIndirectionIndex() - 1) }
2296
2297
0 commit comments