Title: [295419] trunk/Source/WTF/wtf/text/AtomString.h
- Revision
- 295419
- Author
- [email protected]
- Date
- 2022-06-09 07:08:40 -0700 (Thu, 09 Jun 2022)
Log Message
[GTK] Ubuntu LTS bot build failed after 251271@main
https://bugs.webkit.org/show_bug.cgi?id=241327
Reviewed by Darin Adler.
* Source/WTF/wtf/text/AtomString.h: Implement missing operator!=(const
AtomString& a, ASCIILiteral b).
Canonical link: https://commits.webkit.org/251425@main
Modified Paths
Diff
Modified: trunk/Source/WTF/wtf/text/AtomString.h (295418 => 295419)
--- trunk/Source/WTF/wtf/text/AtomString.h 2022-06-09 13:14:53 UTC (rev 295418)
+++ trunk/Source/WTF/wtf/text/AtomString.h 2022-06-09 14:08:40 UTC (rev 295419)
@@ -171,6 +171,7 @@
inline bool operator==(const Vector<UChar>& a, const AtomString& b) { return b == a; }
inline bool operator!=(const AtomString& a, const AtomString& b) { return a.impl() != b.impl(); }
+inline bool operator!=(const AtomString& a, ASCIILiteral b) { return !(a == b); }
inline bool operator!=(const AtomString& a, const String& b) { return !equal(a.impl(), b.impl()); }
inline bool operator!=(const AtomString& a, const Vector<UChar>& b) { return !(a == b); }
inline bool operator!=(ASCIILiteral a, const AtomString& b) { return !(b == a); }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes