| Index: Source/wtf/BloomFilter.h
|
| diff --git a/Source/wtf/BloomFilter.h b/Source/wtf/BloomFilter.h
|
| index eed43d509be780c330a6bf017f6cc8f217a44516..bc16fb15abaa8a0b09db589e617283347ad3666d 100644
|
| --- a/Source/wtf/BloomFilter.h
|
| +++ b/Source/wtf/BloomFilter.h
|
| @@ -64,7 +64,7 @@ public:
|
| bool mayContain(const AtomicString& string) const { return mayContain(string.impl()->existingHash()); }
|
| bool mayContain(const String& string) const { return mayContain(string.impl()->hash()); }
|
|
|
| -#if ASSERT_ENABLED
|
| +#if ENABLE(ASSERT)
|
| // Slow.
|
| bool likelyEmpty() const;
|
| bool isClear() const;
|
| @@ -110,7 +110,7 @@ inline void BloomFilter<keyBits>::clear()
|
| memset(m_table, 0, tableSize);
|
| }
|
|
|
| -#if ASSERT_ENABLED
|
| +#if ENABLE(ASSERT)
|
| template <unsigned keyBits>
|
| bool BloomFilter<keyBits>::likelyEmpty() const
|
| {
|
|
|