Ignore:
Timestamp:
Oct 2, 2009, 11:06:49 AM (16 years ago)
Author:
[email protected]
Message:

Rolled back in r49004 with the debug 64bit build fixed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/JSValue.cpp

    r49005 r49030  
    111111    static const size_t size = 32;
    112112    static char description[size];
    113     if (isInt32())
     113
     114    if (!*this)
     115        snprintf(description, size, "<JSValue()>");
     116    else if (isInt32())
    114117        snprintf(description, size, "Int32: %d", asInt32());
    115118    else if (isDouble())
Note: See TracChangeset for help on using the changeset viewer.