mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05:00
[libcalamares] class/struct mismatch
- Manager::Private is a class, not just a struct. Needed for hypothetical MSVC compatibility.
This commit is contained in:
parent
4799e821d3
commit
3c387a11c9
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ public:
|
||||||
QNetworkReply* asynchronouseGet( const QUrl& url, const RequestOptions& options = RequestOptions() );
|
QNetworkReply* asynchronouseGet( const QUrl& url, const RequestOptions& options = RequestOptions() );
|
||||||
|
|
||||||
private:
|
private:
|
||||||
struct Private;
|
class Private;
|
||||||
std::unique_ptr< Private > d;
|
std::unique_ptr< Private > d;
|
||||||
};
|
};
|
||||||
} // namespace Network
|
} // namespace Network
|
||||||
|
|
Loading…
Add table
Reference in a new issue