Skip to content

Commit 894ec4e

Browse files
lukeshinglestru
authored andcommitted
[analyzer] Add missing include <unordered_map> to llvm/lib/Support/Z3Solver.cpp (#106410)
Resolves #106361. Adding #include <unordered_map> to llvm/lib/Support/Z3Solver.cpp fixes compilation errors for homebrew build on macOS with Xcode 14. https://github.com/Homebrew/homebrew-core/actions/runs/10604291631/job/29390993615?pr=181351 shows that this is resolved when the include is patched in (Linux CI failure is due to unrelated timeout). (cherry picked from commit fcb3a04)
1 parent 03cc174 commit 894ec4e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

llvm/lib/Support/Z3Solver.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ using namespace llvm;
1919
#include "llvm/ADT/Twine.h"
2020

2121
#include <set>
22+
#include <unordered_map>
2223

2324
#include <z3.h>
2425

0 commit comments

Comments
 (0)