C++: Fix QLDoc on 'getAllocationAddressOperand' and 'getAllocationAddress'.

This commit is contained in:
Mathias Vorreiter Pedersen
2021-09-22 13:32:20 +01:00
parent 82d463e86e
commit 5969c227ab

View File

@@ -1856,12 +1856,12 @@ class InitializeDynamicAllocationInstruction extends SideEffectInstruction {
}
/**
* Gets the address of the allocation this instruction is initializing.
* Gets the operand of the allocation this instruction is initializing.
*/
final AddressOperand getAllocationAddressOperand() { result = getAnOperand() }
/**
* Gets the operand for the allocation this instruction is initializing.
* Gets the address for the allocation this instruction is initializing.
*/
final Instruction getAllocationAddress() { result = getAllocationAddressOperand().getDef() }
}