Title: [151871] branches/dfgFourthTier/Source/WebCore
- Revision
- 151871
- Author
- [email protected]
- Date
- 2013-06-21 17:13:32 -0700 (Fri, 21 Jun 2013)
Log Message
Fixed broken build: updated to match SmallStrings changes in r151864.
Not reviewed.
No new tests.
* bindings/js/JSDOMBinding.h:
(WebCore::jsStringWithCache):
Modified Paths
Diff
Modified: branches/dfgFourthTier/Source/WebCore/ChangeLog (151870 => 151871)
--- branches/dfgFourthTier/Source/WebCore/ChangeLog 2013-06-22 00:08:34 UTC (rev 151870)
+++ branches/dfgFourthTier/Source/WebCore/ChangeLog 2013-06-22 00:13:32 UTC (rev 151871)
@@ -1,3 +1,14 @@
+2013-06-21 Mark Lam <[email protected]>
+
+ Fixed broken build: updated to match SmallStrings changes in r151864.
+
+ Not reviewed.
+
+ No new tests.
+
+ * bindings/js/JSDOMBinding.h:
+ (WebCore::jsStringWithCache):
+
2013-06-14 Mark Lam <[email protected]>
Rolling r151456, r151420 back in with some fixes.
Modified: branches/dfgFourthTier/Source/WebCore/bindings/js/JSDOMBinding.h (151870 => 151871)
--- branches/dfgFourthTier/Source/WebCore/bindings/js/JSDOMBinding.h 2013-06-22 00:08:34 UTC (rev 151870)
+++ branches/dfgFourthTier/Source/WebCore/bindings/js/JSDOMBinding.h 2013-06-22 00:13:32 UTC (rev 151871)
@@ -441,7 +441,7 @@
UChar singleCharacter = (*stringImpl)[0u];
if (singleCharacter <= JSC::maxSingleCharacterString) {
JSC::VM* vm = &exec->vm();
- return vm->smallStrings.singleCharacterString(vm, static_cast<unsigned char>(singleCharacter));
+ return vm->smallStrings.singleCharacterString(static_cast<unsigned char>(singleCharacter));
}
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes