head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2026.04.30.06.39.44; author adam; state Exp; branches; next ; commitid EBfLiYmrAFQ3VWDG; desc @@ 1.1 log @qt6-qtwebengine: updated to 6.11.0 The 6.11 release for Qt Framework is now available, with improved performance, newly supported techniques and capabilities on graphics, connectivity and languages, not to mention a whole new approach to asynchronous C++ coding. Take a closer look. https://www.qt.io/blog/qt-6.11-released @ text @$NetBSD$ Fix build: error: 'isnan' was not declared in this scope. --- src/3rdparty/chromium/third_party/pdfium/fxjs/cjs_util.cpp.orig 2026-04-29 16:44:38.012543833 +0000 +++ src/3rdparty/chromium/third_party/pdfium/fxjs/cjs_util.cpp @@@@ -177,7 +177,7 @@@@ CJS_Result CJS_Util::printd(CJS_Runtime* pRuntime, } v8::Local v8_date = params[1].As(); - if (v8_date.IsEmpty() || isnan(pRuntime->ToDouble(v8_date))) { + if (v8_date.IsEmpty() || std::isnan(pRuntime->ToDouble(v8_date))) { return CJS_Result::Failure(JSMessage::kSecondParamInvalidDateError); } @@@@ -393,7 +393,7 @@@@ CJS_Result CJS_Util::scand(CJS_Runtime* pRuntime, dDate = CJS_PublicMethods::ParseDateUsingFormat(pRuntime->GetIsolate(), sDate, sFormat, nullptr); } - if (isnan(dDate)) { + if (std::isnan(dDate)) { return CJS_Result::Success(pRuntime->NewUndefined()); } @