forked from OSchip/llvm-project
[ORC] Silence a compiler error.
This should fix the builder error at http://lab.llvm.org:8011/builders/lld-x86_64-darwin13/builds/19006 llvm-svn: 327475
This commit is contained in:
parent
817f1f64d9
commit
d4a768e78f
|
@ -362,7 +362,7 @@ Expected<SymbolMap> lookup(const std::vector<VSO *> &VSOs, SymbolNameSet Names,
|
|||
PromisedResult.set_value(std::move(*Result));
|
||||
else {
|
||||
ResolutionError = Result.takeError();
|
||||
PromisedResult.set_value({});
|
||||
PromisedResult.set_value(SymbolMap());
|
||||
}
|
||||
};
|
||||
auto OnReady = [&](Error Err) {
|
||||
|
|
Loading…
Reference in New Issue