[llvm] [analyzer] Add missing include <unordered_map> to llvm/lib/Support/Z3Solver.cpp (PR #106410)
Luke Shingles via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 28 11:49:14 PDT 2024
https://github.com/lukeshingles updated https://github.com/llvm/llvm-project/pull/106410
>From 63c3de45d70a12f8ac493435c3da8cda66c54304 Mon Sep 17 00:00:00 2001
From: Luke Shingles <luke.shingles at gmail.com>
Date: Wed, 28 Aug 2024 14:10:46 +0100
Subject: [PATCH] [analyzer] Add missing include to Z3Solver.cpp
---
llvm/lib/Support/Z3Solver.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/llvm/lib/Support/Z3Solver.cpp b/llvm/lib/Support/Z3Solver.cpp
index 5a34ff160f6cf4..9aece099b06295 100644
--- a/llvm/lib/Support/Z3Solver.cpp
+++ b/llvm/lib/Support/Z3Solver.cpp
@@ -19,6 +19,7 @@ using namespace llvm;
#include "llvm/ADT/Twine.h"
#include <set>
+#include <unordered_map>
#include <z3.h>
More information about the llvm-commits
mailing list