| Index: Source/wtf/text/AtomicString.h
|
| diff --git a/Source/wtf/text/AtomicString.h b/Source/wtf/text/AtomicString.h
|
| index aea437a298b151a3e0b4cba7c21b15d2ecbfcb93..792344e5e035d02dc76b6f9d2468d4d008f59d6b 100644
|
| --- a/Source/wtf/text/AtomicString.h
|
| +++ b/Source/wtf/text/AtomicString.h
|
| @@ -188,6 +188,7 @@ inline bool operator==(const AtomicString& a, const char* b) { return WTF::equal
|
| inline bool operator==(const AtomicString& a, const Vector<UChar>& b) { return a.impl() && equal(a.impl(), b.data(), b.size()); }
|
| inline bool operator==(const AtomicString& a, const String& b) { return equal(a.impl(), b.impl()); }
|
| inline bool operator==(const LChar* a, const AtomicString& b) { return b == a; }
|
| +inline bool operator==(const char* a, const AtomicString& b) { return b == a; }
|
| inline bool operator==(const String& a, const AtomicString& b) { return equal(a.impl(), b.impl()); }
|
| inline bool operator==(const Vector<UChar>& a, const AtomicString& b) { return b == a; }
|
|
|
| @@ -197,6 +198,7 @@ inline bool operator!=(const AtomicString& a, const char* b) { return !(a == b);
|
| inline bool operator!=(const AtomicString& a, const String& b) { return !equal(a.impl(), b.impl()); }
|
| inline bool operator!=(const AtomicString& a, const Vector<UChar>& b) { return !(a == b); }
|
| inline bool operator!=(const LChar* a, const AtomicString& b) { return !(b == a); }
|
| +inline bool operator!=(const char* a, const AtomicString& b) { return !(b == a); }
|
| inline bool operator!=(const String& a, const AtomicString& b) { return !equal(a.impl(), b.impl()); }
|
| inline bool operator!=(const Vector<UChar>& a, const AtomicString& b) { return !(a == b); }
|
|
|
|
|