Skip to content

Commit

Permalink
Fix build breakages in rG1429240ed63b.
Browse files Browse the repository at this point in the history
  • Loading branch information
ymand committed Jul 26, 2023
1 parent 33e25cd commit 75abfa2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ llvm::Expected<std::vector<Diagnostic>> diagnoseFunction(
llvm::move(EltDiagnostics, std::back_inserter(Diagnostics));
})
.takeError())
return Err;
return std::move(Err);

if (Solver->reachedLimit())
return llvm::createStringError(llvm::errc::interrupted,
Expand Down
1 change: 1 addition & 0 deletions clang/lib/Analysis/FlowSensitive/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ add_clang_library(clangAnalysisFlowSensitive
LINK_LIBS
clangAnalysis
clangAST
clangASTMatchers
clangBasic
clangLex
)
Expand Down

0 comments on commit 75abfa2

Please sign in to comment.