Changeset 45907 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jul 15, 2009, 7:04:13 AM (16 years ago)
Author:
Simon Hausmann
Message:

2009-07-15 Norbert Leser <[email protected]>

Reviewed by Simon Hausmann.

Undef ASSERT on Symbian, to avoid excessive warnings
https://bugs.webkit.org/show_bug.cgi?id=27052

  • wtf/Assertions.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r45904 r45907  
     12009-07-15  Norbert Leser  <[email protected]>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        Undef ASSERT on Symbian, to avoid excessive warnings
     6        https://bugs.webkit.org/show_bug.cgi?id=27052
     7
     8        * wtf/Assertions.h:
     9
    1102009-07-15  Oliver Hunt  <[email protected]>
    211
  • trunk/JavaScriptCore/wtf/Assertions.h

    r44765 r45907  
    137137#endif
    138138
    139 #if PLATFORM(WIN_OS)
    140 /* FIXME: Change to use something other than ASSERT to avoid this conflict with win32. */
     139#if PLATFORM(WIN_OS) || PLATFORM(SYMBIAN)
     140/* FIXME: Change to use something other than ASSERT to avoid this conflict with the underlying platform */
    141141#undef ASSERT
    142142#endif
Note: See TracChangeset for help on using the changeset viewer.