summaryrefslogtreecommitdiffstats
path: root/src/doctokenizer.h
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-11-06 17:46:24 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-11-06 17:46:24 (GMT)
commit2001c933292d3dd25ebc6634dab62aab7389c5bc (patch)
tree18bb3ab9aae101ff52ebe70024b1fcbf0b461c4b /src/doctokenizer.h
parent0a1a216ceed4be17ab3bf2a80be3be1bae21efeb (diff)
downloadDoxygen-2001c933292d3dd25ebc6634dab62aab7389c5bc.zip
Doxygen-2001c933292d3dd25ebc6634dab62aab7389c5bc.tar.gz
Doxygen-2001c933292d3dd25ebc6634dab62aab7389c5bc.tar.bz2
Output of unknown xml/html tag
When having a problem like: ``` /** \file - Just name <name> - name plus subname <name subname> - name plus twice subname <name subname subname> - name plus subname subname="" <name subname subname=""> */ ``` we get correctly the warnings: ``` .../aa.h:3: warning: Unsupported xml/html tag <name> found .../aa.h:4: warning: Unsupported xml/html tag <name> found .../aa.h:5: warning: Unsupported xml/html tag <name> found .../aa.h:6: warning: Unsupported xml/html tag <name> found ``` but the output doesn't look good as there is `=""` added: ``` Just name <name> name plus subname <name subname=""> name plus twice subname <name subname="" subname=""> name plus subname subname="" <name subname="" subname=""> ``` This patch fixes this output.
Diffstat (limited to 'src/doctokenizer.h')
-rw-r--r--src/doctokenizer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/doctokenizer.h b/src/doctokenizer.h
index f89069c..e95c4c0 100644
--- a/src/doctokenizer.h
+++ b/src/doctokenizer.h
@@ -100,6 +100,7 @@ struct TokenInfo
HtmlAttribList attribs;
bool endTag;
bool emptyTag;
+ QCString attribsStr;
// whitespace
QCString chars;