src: Fixed template function specialization defined within class definition caused clang error

This commit is contained in:
Eberhard Graether
2016-03-29 12:13:42 +02:00
parent 880a199540
commit ac506622b4
@@ -44,9 +44,6 @@ private:
template<typename T>
QtProjectWizzardWindow* createWindowWithContent();
template<>
QtProjectWizzardWindow* createWindowWithContent<QtProjectWizzardContentSelect>();
QtProjectWizzardWindow* createWindowWithSummary(
std::function<void(QtProjectWizzardWindow*, QtProjectWizzardContentSummary*)> func);
template<typename T>
@@ -92,4 +89,7 @@ private slots:
void createProject();
};
template<>
QtProjectWizzardWindow* QtProjectWizzard::createWindowWithContent<QtProjectWizzardContentSelect>();
#endif // QT_PROJECT_WIZZARD_H