diff options
author | Paul Wicking <[email protected]> | 2025-03-03 09:25:41 +0100 |
---|---|---|
committer | Paul Wicking <[email protected]> | 2025-03-26 16:43:21 +0100 |
commit | a8dab8590a611ed570d937754a66497bc88d4e49 (patch) | |
tree | 2cc09c4cc5d5d0c1332b961c5e04053fdb83dc0b | |
parent | b12a5bf41a722337b3addde9c82b233126e17174 (diff) |
Doc: Drop "Unknown base" spurious regex from config
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.9 6.8
Change-Id: Ic461c63b62bd25fb2d1f3b485c46db55e52e20cf
Reviewed-by: Topi Reiniƶ <[email protected]>
-rw-r--r-- | doc/global/compat.qdocconf | 3 |
1 files changed, 1 insertions, 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).*" |