Skip to content

Commit 19181f2

Browse files
committed
[compiler-rt] Add missing include to sanitizer_stackdepot_test.cpp
Without this change I am seeing build failures due to missing std::next_permutation since my standard library does implicitly pull in <algorithm> anymore.
1 parent 40ba1f6 commit 19181f2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

compiler-rt/lib/sanitizer_common/tests/sanitizer_stackdepot_test.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
//===----------------------------------------------------------------------===//
1212
#include "sanitizer_common/sanitizer_stackdepot.h"
1313

14+
#include <algorithm>
1415
#include <atomic>
1516
#include <numeric>
1617
#include <regex>

0 commit comments

Comments
 (0)