File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
cpp/ql/src/semmle/code/cpp/ir/dataflow/internal Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -176,9 +176,7 @@ class ParameterNode extends InstructionNode {
176176 * flow graph.
177177 */
178178private class ExplicitParameterNode extends ParameterNode {
179- ExplicitParameterNode ( ) {
180- exists ( instr .getParameter ( ) )
181- }
179+ ExplicitParameterNode ( ) { exists ( instr .getParameter ( ) ) }
182180
183181 override predicate isParameterOf ( Function f , int i ) { f .getParameter ( i ) = instr .getParameter ( ) }
184182
@@ -189,9 +187,7 @@ private class ExplicitParameterNode extends ParameterNode {
189187}
190188
191189private class ThisParameterNode extends ParameterNode {
192- ThisParameterNode ( ) {
193- instr .getIRVariable ( ) instanceof IRThisVariable
194- }
190+ ThisParameterNode ( ) { instr .getIRVariable ( ) instanceof IRThisVariable }
195191
196192 override predicate isParameterOf ( Function f , int i ) {
197193 i = - 1 and instr .getEnclosingFunction ( ) = f
You can’t perform that action at this time.
0 commit comments