Skip to content

Commit

Permalink
[compiler-rt] Add missing include to sanitizer_stackdepot_test.cpp
Browse files Browse the repository at this point in the history
Without this change I am seeing build failures due to missing
std::next_permutation since my standard library does implicitly pull
in <algorithm> anymore.
  • Loading branch information
arichardson committed Feb 27, 2024
1 parent 40ba1f6 commit 19181f2
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
//===----------------------------------------------------------------------===//
#include "sanitizer_common/sanitizer_stackdepot.h"

#include <algorithm>
#include <atomic>
#include <numeric>
#include <regex>
Expand Down

0 comments on commit 19181f2

Please sign in to comment.