Bug 1566697 - Fix unified build problem. r=longsonr

Differential Revision: https://phabricator.services.mozilla.com/D38262

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Cameron McCormack 2019-07-17 06:13:49 +00:00
Родитель 0fddb5f0fd
Коммит 4ad7a0ff70
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -167,7 +167,7 @@ bool SVGPathData::GetDistancesFromOriginToEndsOfVisibleSegments(
// With degenerately large point coordinates, TraversePathSegment can fail
// and end up producing NaNs.
if (!isfinite(state.length)) {
if (!std::isfinite(state.length)) {
return false;
}