Ignore:
Timestamp:
Oct 16, 2007, 4:25:33 PM (18 years ago)
Author:
ggaren
Message:

Reviewed by Darin Adler.


Global replace of assert with ASSERT.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/math_object.cpp

    r25541 r26688  
    2323#include "math_object.h"
    2424#include "math_object.lut.h"
    25 #include "wtf/MathExtras.h"
     25#include <wtf/MathExtras.h>
    2626
    2727#include "operations.h"
    2828#include <math.h>
    2929#include <time.h>
     30#include <wtf/Assertions.h>
    3031
    3132using namespace KJS;
     
    108109    break;
    109110  default:
    110     assert(0);
     111    ASSERT(0);
    111112  }
    112113
     
    230231  default:
    231232    result = 0.0;
    232     assert(0);
     233    ASSERT(0);
    233234  }
    234235
Note: See TracChangeset for help on using the changeset viewer.