diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-12-08 12:24:54 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-12-08 12:24:54 (GMT) |
commit | a0c75e4c7a7aef5a1e8cec56a1f909eac44af3e9 (patch) | |
tree | 28adeb424acf4f8f81374920b28dcc3d1d8fae4c /src/doctokenizer.h | |
parent | 67f31eae1d04d83b597796f3336133c155cfeee4 (diff) | |
parent | 45ccdc2925b020b086ac14ba3ab3706b6c7e16b6 (diff) | |
download | Doxygen-a0c75e4c7a7aef5a1e8cec56a1f909eac44af3e9.zip Doxygen-a0c75e4c7a7aef5a1e8cec56a1f909eac44af3e9.tar.gz Doxygen-a0c75e4c7a7aef5a1e8cec56a1f909eac44af3e9.tar.bz2 |
Merge branch 'master' of github.com:doxygen/doxygen
Diffstat (limited to 'src/doctokenizer.h')
-rw-r--r-- | src/doctokenizer.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/doctokenizer.h b/src/doctokenizer.h index f89069c..badf23e 100644 --- a/src/doctokenizer.h +++ b/src/doctokenizer.h @@ -80,8 +80,8 @@ struct TokenInfo // comment blocks // list token info - bool isEnumList; - int indent; + bool isEnumList = false; + int indent = 0; // sections QCString sectionId; @@ -94,22 +94,22 @@ struct TokenInfo QCString verb; // xrefitem - int id; + int id = -1; // html tag HtmlAttribList attribs; - bool endTag; - bool emptyTag; + bool endTag = false; + bool emptyTag = false; // whitespace QCString chars; // url - bool isEMailAddr; + bool isEMailAddr = false; // param attributes enum ParamDir { In=1, Out=2, InOut=3, Unspecified=0 }; - ParamDir paramDir; + ParamDir paramDir = Unspecified; }; // globals |