Skip to content

Commit

Permalink
[Driver] Add missing include of std::set.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fhahn committed Apr 6, 2024
1 parent fa8a726 commit 1803d67
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions clang/lib/Driver/ToolChains/AIX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#include "llvm/ProfileData/InstrProf.h"
#include "llvm/Support/Path.h"

#include <set>

using AIX = clang::driver::toolchains::AIX;
using namespace clang::driver;
using namespace clang::driver::tools;
Expand Down

0 comments on commit 1803d67

Please sign in to comment.