[libcalamares] class/struct mismatch

- Manager::Private is a class, not just a struct. Needed for
   hypothetical MSVC compatibility.
This commit is contained in:
Adriaan de Groot 2019-09-23 11:26:53 +02:00
parent 4799e821d3
commit 3c387a11c9

View file

@ -149,7 +149,7 @@ public:
QNetworkReply* asynchronouseGet( const QUrl& url, const RequestOptions& options = RequestOptions() );
private:
struct Private;
class Private;
std::unique_ptr< Private > d;
};
} // namespace Network