File tree 2 files changed +6
-3
lines changed
CodeQL_Queries/cpp/Chrome
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class StrongBinding extends ClassTemplateInstantiation {
11
11
}
12
12
13
13
Type getBindingType ( ) {
14
- result = this .getTemplateArgument ( 0 ) .stripType ( )
14
+ result = this .getTemplateArgument ( 0 ) .( Type ) . stripType ( )
15
15
}
16
16
}
17
17
@@ -21,7 +21,7 @@ class Binding extends ClassTemplateInstantiation {
21
21
}
22
22
23
23
Type getBindingType ( ) {
24
- result = this .getTemplateArgument ( 0 ) .stripType ( )
24
+ result = this .getTemplateArgument ( 0 ) .( Type ) . stripType ( )
25
25
}
26
26
}
27
27
@@ -32,7 +32,7 @@ class MojoReceiver extends ClassTemplateInstantiation {
32
32
}
33
33
34
34
Type getBindingType ( ) {
35
- result = this .getTemplateArgument ( 0 ) .stripType ( )
35
+ result = this .getTemplateArgument ( 0 ) .( Type ) . stripType ( )
36
36
}
37
37
}
38
38
Original file line number Diff line number Diff line change
1
+ name : chrome_ql
2
+ version : 0.0.0
3
+ libraryPathDependencies : codeql-cpp
You can’t perform that action at this time.
0 commit comments