```` Point Point::operator++(int) { Point* old = this; ++(*this); return (*old); } ```` in file game_core.cpp https://github.com/nikitautiu/table/blob/master/src/game_core.cpp :))) a se schimba de preferință la: ```` Point Point::operator++(int) { Point old = *this; ++(*this); return old; } ````