summaryrefslogtreecommitdiffstats
path: root/src/types.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-03-03 19:06:23 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-03-03 19:13:04 (GMT)
commit13a1e0111d210d6688495806af1805997541e9c2 (patch)
tree4c936747cc3d3029c945a0227f7b45e0dbe07dfe /src/types.h
parent23a88bee679fb545a4d22ac10f10203cb575056b (diff)
downloadDoxygen-13a1e0111d210d6688495806af1805997541e9c2.zip
Doxygen-13a1e0111d210d6688495806af1805997541e9c2.tar.gz
Doxygen-13a1e0111d210d6688495806af1805997541e9c2.tar.bz2
Fix typo in the lexscanner.h's guard
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/types.h b/src/types.h
index 3667f3d..bf24fd9 100644
--- a/src/types.h
+++ b/src/types.h
@@ -3,8 +3,8 @@
* Copyright (C) 1997-2015 by Dimitri van Heesch.
*
* Permission to use, copy, modify, and distribute this software and its
- * documentation under the terms of the GNU General Public License is hereby
- * granted. No representations are made about the suitability of this software
+ * documentation under the terms of the GNU General Public License is hereby
+ * granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details.
*
@@ -20,7 +20,7 @@
#include <qcstring.h>
/** @file
- * @brief This file contains a number of basic enums and types.
+ * @brief This file contains a number of basic enums and types.
*/
/** Protection level of members */
@@ -58,18 +58,18 @@ enum SrcLangExt
SrcLangExt_Markdown = 0x10000,
SrcLangExt_SQL = 0x20000,
SrcLangExt_Slice = 0x40000,
- SrcLangExt_Lex = 0x100000
+ SrcLangExt_Lex = 0x80000
};
/** Grouping info */
-struct Grouping
+struct Grouping
{
/** Grouping priority */
- enum GroupPri_t
+ enum GroupPri_t
{
GROUPING_LOWEST,
- GROUPING_AUTO_WEAK = GROUPING_LOWEST, //!< membership in group was defined via \@weakgroup
- GROUPING_AUTO_ADD, //!< membership in group was defined via \@add[to]group
+ GROUPING_AUTO_WEAK = GROUPING_LOWEST, //!< membership in group was defined via \@weakgroup
+ GROUPING_AUTO_ADD, //!< membership in group was defined via \@add[to]group
GROUPING_AUTO_DEF, //!< membership in group was defined via \@defgroup
GROUPING_AUTO_HIGHEST = GROUPING_AUTO_DEF,
GROUPING_INGROUP, //!< membership in group was defined by \@ingroup
@@ -88,7 +88,7 @@ struct Grouping
return "@defgroup";
case GROUPING_INGROUP:
return "@ingroup";
- }
+ }
return "???";
}
@@ -148,7 +148,7 @@ enum MemberListType
MemberListType_allMembersList = 38,
MemberListType_decDefineMembers = 39 + MemberListType_declarationLists,
- MemberListType_decProtoMembers = 40 + MemberListType_declarationLists,
+ MemberListType_decProtoMembers = 40 + MemberListType_declarationLists,
MemberListType_decTypedefMembers = 41 + MemberListType_declarationLists,
MemberListType_decEnumMembers = 42 + MemberListType_declarationLists,
MemberListType_decFuncMembers = 43 + MemberListType_declarationLists,