Skip to content

Commit c918c1a

Browse files
committed
[NFCi] Fixing build failures on Windows due to std::tie used w/o proper include.
From https://reviews.llvm.org/D81236 / llvm/llvm-project@55fe7b7 std::tie is used without including <tuple>. This patch includes <tuple> so that some downstream Windows bots succesfully build.
1 parent b4180fe commit c918c1a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

llvm/include/llvm/PassAnalysisSupport.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
#include "llvm/ADT/SmallVector.h"
2626
#include <cassert>
27+
#include <tuple>
2728
#include <utility>
2829
#include <vector>
2930

0 commit comments

Comments
 (0)