Title: [292814] trunk/Source/WTF
Revision
292814
Author
cdu...@apple.com
Date
2022-04-13 10:52:20 -0700 (Wed, 13 Apr 2022)

Log Message

Drop unused AtomString(const LChar*) constructor
https://bugs.webkit.org/show_bug.cgi?id=239274

Reviewed by Darin Adler.

* wtf/text/AtomString.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (292813 => 292814)


--- trunk/Source/WTF/ChangeLog	2022-04-13 16:52:59 UTC (rev 292813)
+++ trunk/Source/WTF/ChangeLog	2022-04-13 17:52:20 UTC (rev 292814)
@@ -1,3 +1,12 @@
+2022-04-13  Chris Dumez  <cdu...@apple.com>
+
+        Drop unused AtomString(const LChar*) constructor
+        https://bugs.webkit.org/show_bug.cgi?id=239274
+
+        Reviewed by Darin Adler.
+
+        * wtf/text/AtomString.h:
+
 2022-04-13  Wenson Hsieh  <wenson_hs...@apple.com>
 
         MSE video is not drawn onto canvas

Modified: trunk/Source/WTF/wtf/text/AtomString.h (292813 => 292814)


--- trunk/Source/WTF/wtf/text/AtomString.h	2022-04-13 16:52:59 UTC (rev 292813)
+++ trunk/Source/WTF/wtf/text/AtomString.h	2022-04-13 17:52:20 UTC (rev 292814)
@@ -38,7 +38,6 @@
     WTF_EXPORT_PRIVATE static void init();
 
     AtomString();
-    AtomString(const LChar*);
     AtomString(const LChar*, unsigned length);
     AtomString(const UChar*, unsigned length);
     AtomString(const UChar*);
@@ -211,11 +210,6 @@
 {
 }
 
-inline AtomString::AtomString(const LChar* string)
-    : m_string(AtomStringImpl::add(string))
-{
-}
-
 inline AtomString::AtomString(const char* string)
     : m_string(AtomStringImpl::add(string))
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to