Skip to content

Commit 431cc5c

Browse files
committed
C++: Fix inconsistent class name
1 parent 01f3793 commit 431cc5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -646,11 +646,11 @@ private class LoadChainEndInstructionLoad extends LoadChainEndInstruction, LoadI
646646
* be `f`, and thus reading `&outer.inner` must pop `inner` from the access path
647647
* before entering `read_f`.
648648
*/
649-
private class LoadChainInstructionSideEffect extends LoadChainEndInstruction,
649+
private class LoadChainEndInstructionSideEffect extends LoadChainEndInstruction,
650650
ReadSideEffectInstruction {
651651
FieldAddressInstruction fi;
652652

653-
LoadChainInstructionSideEffect() { fi = skipConversion*(this.getArgumentDef()) }
653+
LoadChainEndInstructionSideEffect() { fi = skipConversion*(this.getArgumentDef()) }
654654

655655
override FieldAddressInstruction getFieldInstruction() { result = fi }
656656

0 commit comments

Comments
 (0)