From e70fcdfe5b33b16c3b726b7fac7913792c1754dd Mon Sep 17 00:00:00 2001 From: Paul Wicking Date: Mon, 3 Mar 2025 09:25:41 +0100 Subject: [PATCH] Doc: Drop "Unknown base" spurious regex from config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This regex pattern instructs QDoc to not include the matching warning in its warning count. The warning has changed to a report, however, which won't count towards the warning count in any case, so the regexp isn't needed anymore. Task-number: QTBUG-131459 Task-number: QTBUG-134219 Pick-to: 6.8 Change-Id: Ic461c63b62bd25fb2d1f3b485c46db55e52e20cf Reviewed-by: Topi Reiniƶ (cherry picked from commit a8dab8590a611ed570d937754a66497bc88d4e49) Reviewed-by: Qt Cherry-pick Bot --- doc/global/compat.qdocconf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/global/compat.qdocconf b/doc/global/compat.qdocconf index 42d65fca367..df3f49c653e 100644 --- a/doc/global/compat.qdocconf +++ b/doc/global/compat.qdocconf @@ -7,5 +7,4 @@ macro.relatesto = "\\relates" spurious = "Missing comma in .*" \ "Missing pattern .*" \ - "Unable to parse (QML|JavaScript).*" \ - "Unknown base .*" + "Unable to parse (QML|JavaScript).*"