Title: [127805] trunk/Source/WTF
Revision
127805
Author
msab...@apple.com
Date
2012-09-06 17:43:42 -0700 (Thu, 06 Sep 2012)

Log Message

Unreviewed fix to r127799.
https://bugs.webkit.org/show_bug.cgi?id=95807

Unreviewed fix.

Removed extraneous "static".  This code is hidden behind STRING_STATS define and 
therefore is not enabled by default.

* wtf/text/StringImpl.cpp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (127804 => 127805)


--- trunk/Source/WTF/ChangeLog	2012-09-07 00:36:29 UTC (rev 127804)
+++ trunk/Source/WTF/ChangeLog	2012-09-07 00:43:42 UTC (rev 127805)
@@ -1,3 +1,15 @@
+2012-09-06  Michael Saboff  <msab...@apple.com>
+
+        Unreviewed fix to r127799.
+        https://bugs.webkit.org/show_bug.cgi?id=95807
+
+        Unreviewed fix.
+
+        Removed extraneous "static".  This code is hidden behind STRING_STATS define and 
+        therefore is not enabled by default.
+
+        * wtf/text/StringImpl.cpp:
+
 2012-09-06  Lauro Neto  <lauro.n...@openbossa.org>
 
         [Qt] Deprecate String += operator

Modified: trunk/Source/WTF/wtf/text/StringImpl.cpp (127804 => 127805)


--- trunk/Source/WTF/wtf/text/StringImpl.cpp	2012-09-07 00:36:29 UTC (rev 127804)
+++ trunk/Source/WTF/wtf/text/StringImpl.cpp	2012-09-07 00:43:42 UTC (rev 127805)
@@ -47,7 +47,7 @@
 #ifdef STRING_STATS
 StringStats StringImpl::m_stringStats;
 
-static unsigned StringStats::s_stringRemovesTillPrintStats = StringStats::s_printStringStatsFrequency;
+unsigned StringStats::s_stringRemovesTillPrintStats = StringStats::s_printStringStatsFrequency;
 
 void StringStats::removeString(StringImpl* string)
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to