Chromium Code Reviews| Index: Source/wtf/LinkedHashSet.h |
| diff --git a/Source/wtf/LinkedHashSet.h b/Source/wtf/LinkedHashSet.h |
| index 541976db84283fe73038ed326cd5e0b79ab42d6b..12223c46d7b371028888041dd6d9cf0849420cd8 100644 |
| --- a/Source/wtf/LinkedHashSet.h |
| +++ b/Source/wtf/LinkedHashSet.h |
| @@ -22,6 +22,7 @@ |
| #ifndef WTF_LinkedHashSet_h |
| #define WTF_LinkedHashSet_h |
| +#include "platform/heap/AddressSanitizer.h" |
|
sof
2015/05/19 13:36:44
a layering/dependency violation per se.
|
| #include "wtf/DefaultAllocator.h" |
| #include "wtf/HashSet.h" |
| #include "wtf/OwnPtr.h" |
| @@ -53,6 +54,7 @@ class LinkedHashSetNodeBase { |
| public: |
| LinkedHashSetNodeBase() : m_prev(this), m_next(this) { } |
| + NO_LAZY_SWEEP_SANITIZE_ADDRESS |
| void unlink() |
| { |
| if (!m_next) |