Title: [292238] trunk/Source/WTF
Revision
292238
Author
cdu...@apple.com
Date
2022-04-01 15:42:46 -0700 (Fri, 01 Apr 2022)

Log Message

Unreviewed, drop unnecessary WTF_EXPORT_PRIVATE on String(ASCIILiteral)

This constructor was recently inlined.

* wtf/text/WTFString.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (292237 => 292238)


--- trunk/Source/WTF/ChangeLog	2022-04-01 22:38:25 UTC (rev 292237)
+++ trunk/Source/WTF/ChangeLog	2022-04-01 22:42:46 UTC (rev 292238)
@@ -1,3 +1,11 @@
+2022-04-01  Chris Dumez  <cdu...@apple.com>
+
+        Unreviewed, drop unnecessary WTF_EXPORT_PRIVATE on String(ASCIILiteral)
+
+        This constructor was recently inlined.
+
+        * wtf/text/WTFString.h:
+
 2022-03-31  Chris Dumez  <cdu...@apple.com>
 
         Prepare WebKit/ & WebKitLegacy/ for making the String(const char*) constructor explicit

Modified: trunk/Source/WTF/wtf/text/WTFString.h (292237 => 292238)


--- trunk/Source/WTF/wtf/text/WTFString.h	2022-04-01 22:38:25 UTC (rev 292237)
+++ trunk/Source/WTF/wtf/text/WTFString.h	2022-04-01 22:42:46 UTC (rev 292238)
@@ -97,7 +97,7 @@
     String(StaticStringImpl*);
 
     // Construct a string from a constant string literal.
-    WTF_EXPORT_PRIVATE String(ASCIILiteral);
+    String(ASCIILiteral);
 
     String(const String&) = default;
     String(String&&) = default;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to