C++: Fix typo flagged up by QL-for-QL

This commit is contained in:
Jeroen Ketema
2022-11-22 11:53:11 +01:00
parent 4731f9222c
commit 6a68e7936f

View File

@@ -147,7 +147,7 @@ predicate isModifiableByCall(ArgumentOperand operand) {
then
// A qualifier is "modifiable" if:
// 1. the member function is not const specified, or
// 2. the member funtion is `const` specified, but returns a pointer or reference
// 2. the member function is `const` specified, but returns a pointer or reference
// type that is non-const.
//
// To see why this is necessary, consider the following function: