⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 181706 in webkit


Ignore:
Timestamp:
Mar 18, 2015, 12:07:30 PM (11 years ago)
Author:
timothy_horton@apple.com
Message:

Temporarily fix the !ENABLE(CSS_SELECTOR_JIT) and assertions-enabled build

  • dom/SelectorQuery.cpp:

(WebCore::SelectorDataList::execute):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r181703 r181706  
     12015-03-18  Tim Horton  <timothy_horton@apple.com>
     2
     3        Temporarily fix the !ENABLE(CSS_SELECTOR_JIT) and assertions-enabled build
     4
     5        * dom/SelectorQuery.cpp:
     6        (WebCore::SelectorDataList::execute):
     7
    182015-03-18  Myles C. Maxfield  <mmaxfield@apple.com>
    29
  • trunk/Source/WebCore/dom/SelectorQuery.cpp

    r181699 r181706  
    556556    case CompiledSingleWithRootFilter:
    557557    case CompiledSingle:
    558         ASSERT_NOT_REACHED();
     558        // FIXME: ASSERT_NOT_REACHED and FALLTHROUGH combine to "error: fallthrough annotation in unreachable code"
     559        // We should figure out what should really happen here and put the ASSERT back.
     560        // ASSERT_NOT_REACHED();
    559561        FALLTHROUGH;
    560562#endif // ENABLE(CSS_SELECTOR_JIT)
Note: See TracChangeset for help on using the changeset viewer.