pearcej/cpp4python

Misplaced line of code in section 2.5.1.1.

PeturOA opened this issue · 0 comments

Section 2.5.1.1. The address-of operator, &
includes the following:

The address-of operator & does exactly what it indicates, variableType varN; // a variable to hold the value namely it returns the address.

And the corresponding line is missing from the next code block.

Looking at lines 525-534 in the following commit:
8ab95eb
the line

variableType varN; // a variable to hold the value

appears to have been accidentally moved out of place.