Skip to content
Snippets Groups Projects
Commit feef057f authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix unused capture warning

parent 43492bdd
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ notifications: ...@@ -14,7 +14,7 @@ notifications:
matrix: matrix:
include: include:
- os: osx - os: osx
osx_image: xcode11.3 #xcode10.2 # for c++17 osx_image: xcode10.2 # for c++17
compiler: clang compiler: clang
addons: addons:
homebrew: homebrew:
......
...@@ -118,7 +118,7 @@ to_json(nlohmann::json &obj, const Auth &auth) ...@@ -118,7 +118,7 @@ to_json(nlohmann::json &obj, const Auth &auth)
[&obj](const auth::OAuth2 &) { obj["type"] = auth_types::oauth2; }, [&obj](const auth::OAuth2 &) { obj["type"] = auth_types::oauth2; },
[&obj](const auth::Terms &) { obj["type"] = auth_types::terms; }, [&obj](const auth::Terms &) { obj["type"] = auth_types::terms; },
[&obj](const auth::Dummy &) { obj["type"] = auth_types::dummy; }, [&obj](const auth::Dummy &) { obj["type"] = auth_types::dummy; },
[&obj](const auth::Fallback &) {}, [](const auth::Fallback &) {},
}, },
auth.content); auth.content);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment