Title: [216298] trunk/Source/WTF
Revision
216298
Author
[email protected]
Date
2017-05-05 17:08:55 -0700 (Fri, 05 May 2017)

Log Message

[WTF] Do not export deleted constructor in StringView
https://bugs.webkit.org/show_bug.cgi?id=171751

Patch by Don Olmstead <[email protected]> on 2017-05-05
Reviewed by Alexey Proskuryakov.

* wtf/text/StringView.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (216297 => 216298)


--- trunk/Source/WTF/ChangeLog	2017-05-06 00:08:42 UTC (rev 216297)
+++ trunk/Source/WTF/ChangeLog	2017-05-06 00:08:55 UTC (rev 216298)
@@ -1,3 +1,12 @@
+2017-05-05  Don Olmstead  <[email protected]>
+
+        [WTF] Do not export deleted constructor in StringView
+        https://bugs.webkit.org/show_bug.cgi?id=171751
+
+        Reviewed by Alexey Proskuryakov.
+
+        * wtf/text/StringView.h:
+
 2017-05-05  Yusuke Suzuki  <[email protected]>
 
         [GTK][JSCOnly] Merge MainThread implementations and use generic one

Modified: trunk/Source/WTF/wtf/text/StringView.h (216297 => 216298)


--- trunk/Source/WTF/wtf/text/StringView.h	2017-05-06 00:08:42 UTC (rev 216297)
+++ trunk/Source/WTF/wtf/text/StringView.h	2017-05-06 00:08:55 UTC (rev 216298)
@@ -697,7 +697,7 @@
 
 class StringView::GraphemeClusters::Iterator {
 public:
-    WTF_EXPORT_PRIVATE Iterator() = delete;
+    Iterator() = delete;
     WTF_EXPORT_PRIVATE Iterator(const StringView&, unsigned index);
     WTF_EXPORT_PRIVATE ~Iterator();
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to