Chromium Code Reviews| Index: Source/wtf/LinkedHashSet.h |
| diff --git a/Source/wtf/LinkedHashSet.h b/Source/wtf/LinkedHashSet.h |
| index 541976db84283fe73038ed326cd5e0b79ab42d6b..f780889c0846ab12b8b1622b040e0334244338f5 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" |
| #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_SANITIZE_ADDRESS |
|
haraken
2015/05/01 15:12:32
This looks valid.
|
| void unlink() |
| { |
| if (!m_next) |