Changeset 95898 in webkit


Ignore:
Timestamp:
Sep 23, 2011 8:20:53 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Printing of notImplemented() when logging enabled.
https://bugs.webkit.org/show_bug.cgi?id=64590

Printing of notImplemented() method was enabled on Debug builds only.
Now it is enabled when logging is enabled.

Patch by Lukasz Slachciak <l.slachciak@samsung.com> on 2011-09-23
Reviewed by Oliver Hunt.

No new tests because there is no new functionality.

  • platform/NotImplemented.h: Non-debug mode replaced with non-logging mode.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r95897 r95898  
     12011-09-23  Lukasz Slachciak  <l.slachciak@samsung.com>
     2
     3        Printing of notImplemented() when logging enabled.
     4        https://bugs.webkit.org/show_bug.cgi?id=64590
     5
     6        Printing of notImplemented() method was enabled on Debug builds only.
     7        Now it is enabled when logging is enabled.
     8
     9        Reviewed by Oliver Hunt.
     10
     11        No new tests because there is no new functionality.
     12
     13        * platform/NotImplemented.h: Non-debug mode replaced with non-logging mode.
     14
    1152011-09-23  Mihai Parparita  <mihaip@chromium.org>
    216
  • trunk/Source/WebCore/platform/NotImplemented.h

    r56323 r95898  
    3939#endif
    4040
    41 #if defined(NDEBUG)
     41#if LOG_DISABLED
    4242    #define notImplemented() ((void)0)
    4343#else
Note: See TracChangeset for help on using the changeset viewer.