c++ Programming Glossary: p2d
int vs const int& http://stackoverflow.com/questions/4705593/int-vs-const-int I've been bitten for example by code of this kind struct P2d double x y P2d double x double y x x y y P2d operator const.. for example by code of this kind struct P2d double x y P2d double x double y x x y y P2d operator const P2d p x p.x y p.y.. kind struct P2d double x y P2d double x double y x x y y P2d operator const P2d p x p.x y p.y return this P2d operator const..
|