File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
cpp/ql/test/library-tests/templates/isfromtemplateinstantiation Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import cpp
2
2
3
3
class FunctionMonkeyPatch extends Function {
4
4
language [ monotonicAggregates]
5
- override string toString ( ) {
5
+ override string getDescription ( ) {
6
6
exists ( string name , string templateArgs , string args |
7
7
result = name + templateArgs + args and
8
8
name = this .getQualifiedName ( ) and
@@ -30,7 +30,7 @@ class FunctionMonkeyPatch extends Function {
30
30
}
31
31
32
32
class ParameterMonkeyPatch extends Parameter {
33
- override string toString ( ) { result = super .getType ( ) .getName ( ) + " " + super .toString ( ) }
33
+ override string getDescription ( ) { result = super .getType ( ) .getName ( ) + " " + super .getDescription ( ) }
34
34
}
35
35
36
36
from Element e , Element ti
You can’t perform that action at this time.
0 commit comments