[webkit-changes] cvs commit: JavaScriptCore/kjs config.h identifier.cpp

David hyatt at opensource.apple.com
Mon Dec 26 14:23:56 PST 2005


hyatt       05/12/26 14:23:56

  Modified:    kjs      config.h identifier.cpp
  Log:
  Make sure assert.h is included by including it in config.h
  
  Revision  Changes    Path
  1.15      +2 -0      JavaScriptCore/kjs/config.h
  
  Index: config.h
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/kjs/config.h,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- config.h	23 Nov 2005 05:41:19 -0000	1.14
  +++ config.h	26 Dec 2005 22:23:55 -0000	1.15
  @@ -18,6 +18,8 @@
   #define HAVE_FUNC__FINITE 1
   #define HAVE_SYS_TIMEB_H 1
   
  +#include <assert.h>
  +
   #else
   
   #define HAVE_ERRNO_H 1
  
  
  
  1.28      +1 -1      JavaScriptCore/kjs/identifier.cpp
  
  Index: identifier.cpp
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/kjs/identifier.cpp,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- identifier.cpp	25 Dec 2005 09:22:34 -0000	1.27
  +++ identifier.cpp	26 Dec 2005 22:23:55 -0000	1.28
  @@ -139,7 +139,7 @@
   
   struct UCharBuffer {
       const UChar *s;
  -    uint length;
  +    unsigned int length;
   };
   
   struct UCharBufferTranslator
  
  
  



More information about the webkit-changes mailing list