The aiVector3t class has an explicitly declared default copy constructor, and an implicitly declared copy assignment operator. This causes the deprecated-copy warning to be triggered on Clang (and ...
On rule of three / five page on cppreference, this assignment operator with a value parameter can replace assignment with both reference and rvalue reference parameter. This makes it rule of four. Can ...
// unbalanced_binary_tree.h #ifndef UNBALANCED_BINARY_TREE_H #define UNBALANCED_BINARY_TREE_H // uncomment this line to enable move semantics; comment it to disable it. //#define MOVE_SEMANTICS ...