Skip to content

Commit

Permalink
Add apple-specific missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-sans-paille committed Jan 21, 2022
1 parent 38ac409 commit 51c53a0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions llvm/lib/Support/PrettyStackTrace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
#include "llvm/Support/Watchdog.h"
#include "llvm/Support/raw_ostream.h"

#ifdef __APPLE__
#include "llvm/ADT/SmallString.h"
#endif

#include <atomic>
#include <cassert>
#include <cstdarg>
Expand Down

1 comment on commit 51c53a0

@fhahn
Copy link
Contributor

@fhahn fhahn commented on 51c53a0 Jan 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this needed?

Please sign in to comment.