From: Ivailo Monev Date: Wed, 10 Jul 2019 18:13:58 +0000 (+0000) Subject: sync xml parser qlalr file with the modified output X-Git-Tag: 4.12.0~5519 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=18e97d6f98b803a73a5c0ab7a738d46777307081;p=kde%2FKatie.git sync xml parser qlalr file with the modified output Signed-off-by: Ivailo Monev --- diff --git a/src/xml/kernel/qxmlstream.g b/src/xml/kernel/qxmlstream.g index 6e22a29ec..60dbf289b 100644 --- a/src/xml/kernel/qxmlstream.g +++ b/src/xml/kernel/qxmlstream.g @@ -266,11 +266,11 @@ public: static inline Entity createLiteral(const QString &entity) { Entity result(entity); result.literal = result.hasBeenParsed = true; return result; } QString value; - uint external : 1; - uint unparsed : 1; - uint literal : 1; - uint hasBeenParsed : 1; - uint isCurrentlyReferenced : 1; + bool external; + bool unparsed; + bool literal; + bool hasBeenParsed; + bool isCurrentlyReferenced; }; QHash entityHash; QHash parameterEntityHash; @@ -369,19 +369,19 @@ public: QStringRef processingInstructionTarget, processingInstructionData; QStringRef dtdName, dtdPublicId, dtdSystemId; QStringRef documentVersion, documentEncoding; - uint isEmptyElement : 1; - uint isWhitespace : 1; - uint isCDATA : 1; - uint standalone : 1; - uint hasCheckedStartDocument : 1; - uint normalizeLiterals : 1; - uint hasSeenTag : 1; - uint inParseEntity : 1; - uint referenceToUnparsedEntityDetected : 1; - uint referenceToParameterEntityDetected : 1; - uint hasExternalDtdSubset : 1; - uint lockEncoding : 1; - uint namespaceProcessing : 1; + bool isEmptyElement; + bool isWhitespace; + bool isCDATA; + bool standalone; + bool hasCheckedStartDocument; + bool normalizeLiterals; + bool hasSeenTag; + bool inParseEntity; + bool referenceToUnparsedEntityDetected; + bool referenceToParameterEntityDetected; + bool hasExternalDtdSubset; + bool lockEncoding; + bool namespaceProcessing; int resumeReduction; void resume(int rule);