Skip to content

Commit aa59795

Browse files
googlewaltaokblast
authored andcommitted
[ORC] Fix compile error (llvm#164411)
This fixes the following error we're getting internally, perhaps only with the latest clang: llvm/include/llvm/ExecutionEngine/Orc/WaitingOnGraph.h:136:24: error: missing '#include <__fwd/vector.h>'; default argument of 'vector' must be defined before it is used This is a fix for llvm#164340.
1 parent 5a04400 commit aa59795

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

llvm/include/llvm/ExecutionEngine/Orc/WaitingOnGraph.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include "llvm/Support/raw_ostream.h"
2020

2121
#include <algorithm>
22+
#include <vector>
2223

2324
namespace llvm::orc::detail {
2425

0 commit comments

Comments
 (0)