: vector{ numOfElements, -1 }
: vector( numOfElements, -1 )
|
|
|
|
int
instead of a std::size_t
. It is most definitely a mistake.
Throughout the text, the code has been updated to use C++11. Notably, this means use of the new C++11 features, including the auto keyword, the range for loop, move construction and assignment, and uniform initialization. |
|
|