[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.18-1-697-g2f78b87

eric at webkit.org eric at webkit.org
Wed Jan 20 22:28:29 UTC 2010


The following commit has been merged in the debian/unstable branch:
commit b8190bde22572dd2ef2e42e5a68e4802a54667ab
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 19 00:50:58 2010 +0000

    2010-01-18  Zoltan Horvath  <zoltan at webkit.org>
    
            Reviewed by Darin Adler.
    
            Allow custom memory allocation control for UString class
            https://bugs.webkit.org/show_bug.cgi?id=27831
    
            Inherits the following class from FastAllocBase because it is
            instantiated by 'new' and no need to be copyable:
    
            class name     - instantiated at:
            classs UString - JavaScriptCore/runtime/UString.cpp:160
    
            * runtime/UString.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53438 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 189f8cc..d9afacc 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,18 @@
+2010-01-18  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
+        Allow custom memory allocation control for UString class
+        https://bugs.webkit.org/show_bug.cgi?id=27831
+
+        Inherits the following class from FastAllocBase because it is
+        instantiated by 'new' and no need to be copyable:
+
+        class name     - instantiated at:
+        classs UString - JavaScriptCore/runtime/UString.cpp:160
+
+        * runtime/UString.h:
+
 2010-01-18  Evan Cheng  <evan.cheng at apple.com>
 
         Reviewed by Darin Adler.
diff --git a/JavaScriptCore/runtime/UString.h b/JavaScriptCore/runtime/UString.h
index 0c13689..57baaf9 100644
--- a/JavaScriptCore/runtime/UString.h
+++ b/JavaScriptCore/runtime/UString.h
@@ -74,7 +74,7 @@ namespace JSC {
 
     typedef Vector<char, 32> CStringBuffer;
 
-    class UString {
+    class UString : public FastAllocBase {
         friend class JIT;
 
     public:

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list