1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-21 11:30:30 -04:00

Work around clang destructing + capturing bug yet again

This commit is contained in:
John Ericson 2020-10-13 04:36:20 +00:00
parent 00c607b563
commit b6b383d569

View file

@ -380,7 +380,8 @@ static void performOp(TunnelLogger * logger, ref<Store> store,
logger->startWork();
auto pathInfo = [&]() {
// NB: FramedSource must be out of scope before logger->stopWork();
auto [contentAddressMethod, hashType] = parseContentAddressMethod(camStr);
auto [contentAddressMethod, hashType_] = parseContentAddressMethod(camStr);
auto hashType = hashType_; // work around clang bug
FramedSource source(from);
// TODO this is essentially RemoteStore::addCAToStore. Move it up to Store.
return std::visit(overloaded {