Skip to content

Commit 1803d67

Browse files
committed
[Driver] Add missing include of std::set.
4ddd4ed added a use of std::set without including it. With some recent libc++, std::set isn't included transitively causing build failures. Add explicit include.
1 parent fa8a726 commit 1803d67

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

clang/lib/Driver/ToolChains/AIX.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
#include "llvm/ProfileData/InstrProf.h"
1818
#include "llvm/Support/Path.h"
1919

20+
#include <set>
21+
2022
using AIX = clang::driver::toolchains::AIX;
2123
using namespace clang::driver;
2224
using namespace clang::driver::tools;

0 commit comments

Comments
 (0)