Fixes to support building with GCC

This commit is contained in:
Jack Andersen
2019-05-28 16:51:30 -10:00
parent b4f6c4cb48
commit ca28e21739
2 changed files with 16 additions and 7 deletions

View File

@@ -73,12 +73,12 @@ public:
InternalWaitForResults(Future);
return Future.result();
}
template<>
void WaitForResults(QFuture<void> Future)
{
InternalWaitForResults(Future);
}
};
template<>
inline void CProgressDialog::WaitForResults(QFuture<void> Future)
{
InternalWaitForResults(Future);
}
#endif // CPROGRESSDIALOG_H