diff options
author | albert-github <albert.tests@gmail.com> | 2018-09-17 10:12:26 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-09-17 10:12:26 (GMT) |
commit | e2b07563dd9cc21f8472570d2cc8d6cd69d536b8 (patch) | |
tree | 5b819ff2ea423705764316aadefb750e39ed6907 /src/docbookgen.h | |
parent | a7169b16d748e745bb6626c601acbb94db2f3b0a (diff) | |
download | Doxygen-e2b07563dd9cc21f8472570d2cc8d6cd69d536b8.zip Doxygen-e2b07563dd9cc21f8472570d2cc8d6cd69d536b8.tar.gz Doxygen-e2b07563dd9cc21f8472570d2cc8d6cd69d536b8.tar.bz2 |
C++11 features used in Doxygen
- corrected some initializations
- corrected some missing, new, cases (reported by travis CI)
Diffstat (limited to 'src/docbookgen.h')
-rw-r--r-- | src/docbookgen.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/docbookgen.h b/src/docbookgen.h index 3fafff1..104fbc5 100644 --- a/src/docbookgen.h +++ b/src/docbookgen.h @@ -350,16 +350,16 @@ private: QCString relPath; DocbookCodeGenerator m_codeGen; - bool m_prettyCode = FALSE; - bool m_denseText = FALSE; - bool m_inGroup = FALSE; - bool m_inDetail = FALSE; - int m_levelListItem = 0; + bool m_prettyCode; + bool m_denseText; + bool m_inGroup; + bool m_inDetail; + int m_levelListItem; bool m_inListItem[20]; bool m_inSimpleSect[20]; - bool m_descTable = FALSE; - int m_inLevel = -1; - bool m_firstMember = FALSE; + bool m_descTable; + int m_inLevel; + bool m_firstMember; }; #endif |