[llvm] da48e41 - [ORC] Fix compile error (#164411)
    via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Tue Oct 21 06:14:19 PDT 2025
    
    
  
Author: Walter Lee
Date: 2025-10-21T09:14:15-04:00
New Revision: da48e41094883187a4c7d86f1b9855c709d8ebe5
URL: https://github.com/llvm/llvm-project/commit/da48e41094883187a4c7d86f1b9855c709d8ebe5
DIFF: https://github.com/llvm/llvm-project/commit/da48e41094883187a4c7d86f1b9855c709d8ebe5.diff
LOG: [ORC] Fix compile error (#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 #164340.
Added: 
    
Modified: 
    llvm/include/llvm/ExecutionEngine/Orc/WaitingOnGraph.h
Removed: 
    
################################################################################
diff  --git a/llvm/include/llvm/ExecutionEngine/Orc/WaitingOnGraph.h b/llvm/include/llvm/ExecutionEngine/Orc/WaitingOnGraph.h
index a5b533351d4d0..45834f14e9bdf 100644
--- a/llvm/include/llvm/ExecutionEngine/Orc/WaitingOnGraph.h
+++ b/llvm/include/llvm/ExecutionEngine/Orc/WaitingOnGraph.h
@@ -19,6 +19,7 @@
 #include "llvm/Support/raw_ostream.h"
 
 #include <algorithm>
+#include <vector>
 
 namespace llvm::orc::detail {
 
        
    
    
More information about the llvm-commits
mailing list