Ignore:
Timestamp:
Jun 18, 2005, 7:57:29 PM (20 years ago)
Author:
darin
Message:

Change by Finlay Dobbie.
Reviewed by me.

  • bindings/objc/WebScriptObject.mm: (-[WebScriptObject stringRepresentation]): Undo change we did a while back to work around the gcc 3.3 compiler error. It no longer seems to happen, and the workaround code was 10.4-specific.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/bindings/objc/WebScriptObject.mm

    r9140 r9427  
    341341    if (![self _isSafeScript])
    342342        // This is a workaround for a gcc 3.3 internal compiler error.
    343         return [NSString stringWithCString:"Undefined" encoding:NSASCIIStringEncoding];
     343        return @"Undefined";
    344344
    345345    Interpreter::lock();
Note: See TracChangeset for help on using the changeset viewer.