Title: [100168] trunk/Source/_javascript_Core
- Revision
- 100168
- Author
- [email protected]
- Date
- 2011-11-14 11:26:41 -0800 (Mon, 14 Nov 2011)
Log Message
Remove unused m_data member from UStringSourceProvider
https://bugs.webkit.org/show_bug.cgi?id=72289
Removed unused m_data member from UStringSourceProvider.
Reviewed by Oliver Hunt.
* parser/SourceProvider.h:
(JSC::UStringSourceProvider::UStringSourceProvider):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (100167 => 100168)
--- trunk/Source/_javascript_Core/ChangeLog 2011-11-14 19:25:40 UTC (rev 100167)
+++ trunk/Source/_javascript_Core/ChangeLog 2011-11-14 19:26:41 UTC (rev 100168)
@@ -1,5 +1,17 @@
2011-11-14 Michael Saboff <[email protected]>
+ Remove unused m_data member from UStringSourceProvider
+ https://bugs.webkit.org/show_bug.cgi?id=72289
+
+ Removed unused m_data member from UStringSourceProvider.
+
+ Reviewed by Oliver Hunt.
+
+ * parser/SourceProvider.h:
+ (JSC::UStringSourceProvider::UStringSourceProvider):
+
+2011-11-14 Michael Saboff <[email protected]>
+
Towards 8 Bit Strings: Templatize YARR Parser
https://bugs.webkit.org/show_bug.cgi?id=72288
Modified: trunk/Source/_javascript_Core/parser/SourceProvider.h (100167 => 100168)
--- trunk/Source/_javascript_Core/parser/SourceProvider.h 2011-11-14 19:25:40 UTC (rev 100167)
+++ trunk/Source/_javascript_Core/parser/SourceProvider.h 2011-11-14 19:26:41 UTC (rev 100168)
@@ -97,12 +97,10 @@
UStringSourceProvider(const UString& source, const UString& url, const TextPosition& startPosition)
: SourceProvider(url, startPosition)
, m_source(source)
- , m_data(m_source.characters16())
{
}
UString m_source;
- const UChar* m_data;
};
} // namespace JSC
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes