From e2147ca36d22194582f76faf8b6fc89623172084 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Fri, 29 Dec 2017 23:23:32 +0900 Subject: Don't use generic lambdas in initialisers This seems to upset MSVC. --- connectiondata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connectiondata.cpp b/connectiondata.cpp index 4bfddd00..11015dbf 100644 --- a/connectiondata.cpp +++ b/connectiondata.cpp @@ -41,7 +41,7 @@ struct ConnectionData::Private }; ConnectionData::nam_customizer_t ConnectionData::Private::customizeNam = - [] (auto* /* unused */) { }; + [] (QNetworkAccessManager* /* unused */) { }; ConnectionData::ConnectionData(QUrl baseUrl) : d(std::make_unique(baseUrl)) -- cgit v1.2.3