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 0b381b9 commit 2940f47Copy full SHA for 2940f47
1 file changed
cpp/ql/test/library-tests/templates/isfromtemplateinstantiation/isfromtemplateinstantiation.ql
@@ -2,7 +2,7 @@ import cpp
2
3
class FunctionMonkeyPatch extends Function {
4
language[monotonicAggregates]
5
- override string toString() {
+ override string getDescription() {
6
exists(string name, string templateArgs, string args |
7
result = name + templateArgs + args and
8
name = this.getQualifiedName() and
@@ -30,7 +30,7 @@ class FunctionMonkeyPatch extends Function {
30
}
31
32
class ParameterMonkeyPatch extends Parameter {
33
- override string toString() { result = super.getType().getName() + " " + super.toString() }
+ override string getDescription() { result = super.getType().getName() + " " + super.getDescription() }
34
35
36
from Element e, Element ti
0 commit comments