diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-29 23:23:32 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-29 23:23:32 +0900 |
commit | e2147ca36d22194582f76faf8b6fc89623172084 (patch) | |
tree | c36592ea644bbb074385d1b0c2592b8fa20075ca | |
parent | 9790e94cd6e490d58823b8782af0302d23a7c3bb (diff) | |
download | libquotient-e2147ca36d22194582f76faf8b6fc89623172084.tar.gz libquotient-e2147ca36d22194582f76faf8b6fc89623172084.zip |
Don't use generic lambdas in initialisers
This seems to upset MSVC.
-rw-r--r-- | connectiondata.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<Private>(baseUrl)) |