Changeset 243052 in webkit


Ignore:
Timestamp:
Mar 17, 2019 5:06:48 AM (5 years ago)
Author:
Diego Pino Garcia
Message:

Fix WPE and GTK Debug builds after r243049
https://bugs.webkit.org/show_bug.cgi?id=195860

Unreviewed, build fix after r243049.

  • runtime/StringPrototype.cpp:

(JSC::normalizationAffects8Bit):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r243051 r243052  
     12019-03-17  Diego Pino Garcia  <dpino@igalia.com>
     2
     3        Fix WPE and GTK Debug builds after r243049
     4        https://bugs.webkit.org/show_bug.cgi?id=195860
     5
     6        Unreviewed, build fix after r243049.
     7
     8        * runtime/StringPrototype.cpp:
     9        (JSC::normalizationAffects8Bit):
     10
    1112019-03-17  Yusuke Suzuki  <ysuzuki@apple.com>
    212
  • trunk/Source/JavaScriptCore/runtime/StringPrototype.cpp

    r243049 r243052  
    18191819    case NormalizationForm::NFKD:
    18201820        return true;
    1821     }
    1822     ASSERT_NOT_REACHED();
     1821    default:
     1822        ASSERT_NOT_REACHED();
     1823    }
    18231824    return true;
    18241825}
Note: See TracChangeset for help on using the changeset viewer.