Ft cpp modernization includes
- Changes to the include directives as recommended by clang (include headers in compilation units that need them to speed up compilation).
- Removed unnecessary includes
- Removed
using namespace std. In one instance, this caused a default choice of boost::make_unique instead of std::make_unique
Edited by Vukan Jevtic