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

Darin darin at opensource.apple.com
Sat Sep 10 12:10:25 PDT 2005


darin       05/09/10 12:10:24

  Modified:    .        ChangeLog
               kjs      simple_number.h
  Log:
          - fixed compilation for WebCore (another try)
  
          * kjs/simple_number.h: Added more "using" lines.
  
  Revision  Changes    Path
  1.823     +6 -0      JavaScriptCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/ChangeLog,v
  retrieving revision 1.822
  retrieving revision 1.823
  diff -u -r1.822 -r1.823
  --- ChangeLog	10 Sep 2005 18:58:54 -0000	1.822
  +++ ChangeLog	10 Sep 2005 19:10:23 -0000	1.823
  @@ -1,5 +1,11 @@
   2005-09-10  Darin Adler  <darin at apple.com>
   
  +        - fixed compilation for WebCore (another try)
  +
  +        * kjs/simple_number.h: Added more "using" lines.
  +
  +2005-09-10  Darin Adler  <darin at apple.com>
  +
           - fixed compilation for WebCore
   
           * kjs/simple_number.h: Have to include <cmath> here to work around a bug in the GCC
  
  
  
  1.14      +3 -0      JavaScriptCore/kjs/simple_number.h
  
  Index: simple_number.h
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/kjs/simple_number.h,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- simple_number.h	10 Sep 2005 18:58:55 -0000	1.13
  +++ simple_number.h	10 Sep 2005 19:10:24 -0000	1.14
  @@ -30,6 +30,9 @@
   // We'd prefer to just use math.h.
   #if !WIN32
   #include <cmath>
  +using std::isfinite;
  +using std::isinf;
  +using std::isnan;
   using std::signbit;
   #endif
   
  
  
  



More information about the webkit-changes mailing list