File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 35
35
#include " llvm/ADT/PointerIntPair.h"
36
36
#include " llvm/ADT/PointerUnion.h"
37
37
#include " llvm/ADT/STLForwardCompat.h"
38
+ #include " llvm/Support/Compiler.h"
38
39
#include " llvm/Support/MemAlloc.h"
39
40
#include " llvm/Support/type_traits.h"
40
41
#include < cstring>
@@ -317,7 +318,7 @@ template <typename ReturnT, typename... ParamTs> class UniqueFunctionBase {
317
318
// Clear the old callback and inline flag to get back to as-if-null.
318
319
RHS.CallbackAndInlineFlag = {};
319
320
320
- #if !defined(NDEBUG) && !defined( LLVM_ADDRESS_SANITIZER_BUILD)
321
+ #if !defined(NDEBUG) && !LLVM_ADDRESS_SANITIZER_BUILD
321
322
// In debug builds without ASan, we also scribble across the rest of the
322
323
// storage. AddressSanitizer (ASAN) disables scribbling to prevent
323
324
// overwriting poisoned objects (e.g., annotated short strings).
You can’t perform that action at this time.
0 commit comments