Changeset 254825 in webkit


Ignore:
Timestamp:
Jan 20, 2020 7:43:09 AM (4 years ago)
Author:
Adrian Perez de Castro
Message:

Invalid usage of ENABLE() before it's defined in WebCore/layout/integration/LayoutIntegrationBoxTree.cpp
https://bugs.webkit.org/show_bug.cgi?id=206500

Reviewed by Žan Doberšek.

No new tests needed.

  • layout/integration/LayoutIntegrationBoxTree.cpp: Include "config.h"

before using the ENABLE() macro, to make sure that it gets defined.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r254823 r254825  
     12020-01-20  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        Invalid usage of ENABLE() before it's defined in WebCore/layout/integration/LayoutIntegrationBoxTree.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=206500
     5
     6        Reviewed by Žan Doberšek.
     7
     8        No new tests needed.
     9
     10        * layout/integration/LayoutIntegrationBoxTree.cpp: Include "config.h"
     11        before using the ENABLE() macro, to make sure that it gets defined.
     12
    1132020-01-20  youenn fablet  <youenn@apple.com>
    214
  • trunk/Source/WebCore/layout/integration/LayoutIntegrationBoxTree.cpp

    r254806 r254825  
    2424 */
    2525
    26 #if ENABLE(LAYOUT_FORMATTING_CONTEXT)
    27 
    2826#include "config.h"
    2927#include "LayoutIntegrationBoxTree.h"
     28
     29#if ENABLE(LAYOUT_FORMATTING_CONTEXT)
    3030
    3131#include "RenderBlockFlow.h"
Note: See TracChangeset for help on using the changeset viewer.