Details
Description
I just got the newly released tar.gz version of QtCreator.
When compiling it, I get the following error:
buildgraph/artifactset.cpp:52: error: ‘template<class T> class QSet’ used without template parameters
This corresponds to this function in code:
ArtifactSet &ArtifactSet::unite(const ArtifactSet &other) { QSet::unite(other); return *this; }
When using the following changed code, this file compiles fine:
ArtifactSet &ArtifactSet::unite(const ArtifactSet &other) { QSet<Artifact *>::unite(other); return *this; }