Changeset 26688 in webkit for trunk/JavaScriptCore/kjs/math_object.cpp
- Timestamp:
- Oct 16, 2007, 4:25:33 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/math_object.cpp
r25541 r26688 23 23 #include "math_object.h" 24 24 #include "math_object.lut.h" 25 #include "wtf/MathExtras.h"25 #include <wtf/MathExtras.h> 26 26 27 27 #include "operations.h" 28 28 #include <math.h> 29 29 #include <time.h> 30 #include <wtf/Assertions.h> 30 31 31 32 using namespace KJS; … … 108 109 break; 109 110 default: 110 assert(0);111 ASSERT(0); 111 112 } 112 113 … … 230 231 default: 231 232 result = 0.0; 232 assert(0);233 ASSERT(0); 233 234 } 234 235
Note:
See TracChangeset
for help on using the changeset viewer.