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; }
Attachments
For Gerrit Dashboard: QBS-687 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
95799,3 | compile fix for gcc 4.4 | 1.3 | qbs/qbs | Status: MERGED | +2 | 0 |