Ignore:
Timestamp:
Jul 22, 2014, 9:53:54 PM (11 years ago)
Author:
Brent Fulgham
Message:

Build fix for non-clang compile.

  • jsc.cpp:

(WTF::RuntimeArray::deleteProperty): Need (fake) return
value when NO_RETURN_DUE_TO_CRASH is not defined.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jsc.cpp

    r171390 r171393  
    352352    {
    353353        RELEASE_ASSERT_NOT_REACHED();
     354#if !COMPILER(CLANG)
     355        return true;
     356#endif
    354357    }
    355358
     
    357360    {
    358361        RELEASE_ASSERT_NOT_REACHED();
     362#if !COMPILER(CLANG)
     363        return true;
     364#endif
    359365    }
    360366
Note: See TracChangeset for help on using the changeset viewer.