Changeset 278546 in webkit
- Timestamp:
- Jun 6, 2021, 11:31:54 PM (4 years ago)
- Location:
- trunk/Source
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/PAL/ChangeLog
r278530 r278546 1 2021-06-06 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, reverting r277464. 4 https://bugs.webkit.org/show_bug.cgi?id=226709 5 6 No longer necessary 7 8 Reverted changeset: 9 10 "Work around WebCore failing to build due to NDEBUG getting 11 undefined in release" 12 https://bugs.webkit.org/show_bug.cgi?id=225782 13 https://trac.webkit.org/changeset/277464 14 1 15 2021-06-05 Wenson Hsieh <wenson_hsieh@apple.com> 2 16 -
trunk/Source/WebCore/PAL/pal/spi/cg/CoreGraphicsSPI.h
r277986 r278546 39 39 #if USE(APPLE_INTERNAL_SDK) 40 40 41 // FIXME (77983361): Remove this workaround when <rdar://problem/77977216> is fixed.42 #if defined(NDEBUG) && NDEBUG43 #define WK_NDEBUG 144 #endif45 46 41 #include <CoreGraphics/CGContextDelegatePrivate.h> 47 42 #include <CoreGraphics/CGFontCache.h> … … 49 44 #include <CoreGraphics/CoreGraphicsPrivate.h> 50 45 #include <CoreGraphics/CGStylePrivate.h> 51 52 #if defined(WK_NDEBUG) && !defined(NDEBUG)53 #define NDEBUG 154 #undef WK_NDEBUG55 #endif56 46 57 47 #if PLATFORM(MAC) -
trunk/Source/WebCore/PAL/pal/spi/ios/GraphicsServicesSPI.h
r277464 r278546 32 32 #if USE(APPLE_INTERNAL_SDK) 33 33 34 // FIXME (77983361): Remove this workaround when <rdar://problem/77977216> is fixed.35 #if defined(NDEBUG) && NDEBUG36 #define WK_NDEBUG 137 #endif38 39 34 #import <GraphicsServices/GraphicsServices.h> 40 41 #if defined(WK_NDEBUG) && !defined(NDEBUG)42 #define NDEBUG 143 #undef WK_NDEBUG44 #endif45 35 46 36 #endif -
trunk/Source/WebKit/ChangeLog
r278542 r278546 1 2021-06-06 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, reverting r277464. 4 https://bugs.webkit.org/show_bug.cgi?id=226709 5 6 No longer necessary 7 8 Reverted changeset: 9 10 "Work around WebCore failing to build due to NDEBUG getting 11 undefined in release" 12 https://bugs.webkit.org/show_bug.cgi?id=225782 13 https://trac.webkit.org/changeset/277464 14 1 15 2021-06-06 Wenson Hsieh <wenson_hsieh@apple.com> 2 16 -
trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h
r278183 r278546 27 27 28 28 #if USE(APPLE_INTERNAL_SDK) 29 30 // FIXME (77983361): Remove this workaround when <rdar://problem/77977216> is fixed.31 #if defined(NDEBUG) && NDEBUG32 #define WK_NDEBUG 133 #endif34 29 35 30 #import <UIKit/NSTextAlternatives.h> … … 141 136 #endif 142 137 143 #if defined(WK_NDEBUG) && !defined(NDEBUG)144 #define NDEBUG 1145 #undef WK_NDEBUG146 #endif147 148 138 #else // USE(APPLE_INTERNAL_SDK) 149 139
Note:
See TracChangeset
for help on using the changeset viewer.