I read that replacing
#include <SomeClass>
by
class SomeClass;
Might give some benefits, including speed up compilation time.
So I'm going over a Qt project and replacing all #include <Qt...>
by class Qt...;
on my project header files. But when I did that for QMap
it returned
non-class template has already been declared as a class template”
What that means?