[webkit-changes] cvs commit: JavaScriptCore/kjs lookup.h

Darin darin at opensource.apple.com
Tue Jul 19 14:16:50 PDT 2005


darin       05/07/19 14:16:49

  Modified:    .        ChangeLog
               bindings runtime_root.cpp
               kjs      lookup.h
  Log:
          - fixed the build
  
          * kjs/lookup.h: (KJS::lookupPut): Remove bogus const; was preventing WebCore from
          compiling (not sure why this didn't affect my other build machine).
  
          - one other tiny tweak (so sue me)
  
          * bindings/runtime_root.cpp: Remove unneeded declaration.
  
  Revision  Changes    Path
  1.754     +11 -0     JavaScriptCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/ChangeLog,v
  retrieving revision 1.753
  retrieving revision 1.754
  diff -u -r1.753 -r1.754
  --- ChangeLog	19 Jul 2005 19:52:44 -0000	1.753
  +++ ChangeLog	19 Jul 2005 21:16:48 -0000	1.754
  @@ -1,5 +1,16 @@
   2005-07-19  Darin Adler  <darin at apple.com>
   
  +        - fixed the build
  +
  +        * kjs/lookup.h: (KJS::lookupPut): Remove bogus const; was preventing WebCore from
  +        compiling (not sure why this didn't affect my other build machine).
  +
  +        - one other tiny tweak (so sue me)
  +
  +        * bindings/runtime_root.cpp: Remove unneeded declaration.
  +
  +2005-07-19  Darin Adler  <darin at apple.com>
  +
           Reviewed by Geoff Garen.
   
           - eliminated try wrappers for get/put/call since we don't use C++ exceptions any more
  
  
  
  1.10      +0 -1      JavaScriptCore/bindings/runtime_root.cpp
  
  Index: runtime_root.cpp
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/bindings/runtime_root.cpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- runtime_root.cpp	9 May 2005 23:57:33 -0000	1.9
  +++ runtime_root.cpp	19 Jul 2005 21:16:49 -0000	1.10
  @@ -191,7 +191,6 @@
   // May only be set by dispatchToJavaScriptThread().
   static CFRunLoopSourceRef completionSource;
   
  -static void completedJavaScriptAccess (void *i);
   static void completedJavaScriptAccess (void *i)
   {
       assert (CFRunLoopGetCurrent() != RootObject::runLoop());
  
  
  
  1.14      +1 -1      JavaScriptCore/kjs/lookup.h
  
  Index: lookup.h
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/kjs/lookup.h,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- lookup.h	19 Jul 2005 19:52:44 -0000	1.13
  +++ lookup.h	19 Jul 2005 21:16:49 -0000	1.14
  @@ -223,7 +223,7 @@
     template <class ThisImp, class ParentImp>
     inline void lookupPut(ExecState *exec, const Identifier &propertyName,
                           const Value& value, int attr,
  -                        const HashTable* table, const ThisImp* thisObj)
  +                        const HashTable* table, ThisImp* thisObj)
     {
       const HashEntry* entry = Lookup::findEntry(table, propertyName);
   
  
  
  



More information about the webkit-changes mailing list