Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
ec69936c
Commit
ec69936c
authored
Mar 20, 2009
by
Thorbjørn Lindeijer
Browse files
Support Doxygen comment style after members
Forms /**<, /*!<, ///< and //!<. Done with Roberto Raggi.
parent
b28d55f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/shared/cplusplus/Lexer.cpp
View file @
ec69936c
...
...
@@ -410,6 +410,9 @@ void Lexer::scan_helper(Token *tok)
if
(
_yychar
==
'/'
||
_yychar
==
'!'
)
{
yyinp
();
if
(
_yychar
==
'<'
)
yyinp
();
if
(
_yychar
!=
'\n'
&&
std
::
isspace
(
_yychar
))
doxy
=
true
;
}
...
...
@@ -435,6 +438,9 @@ void Lexer::scan_helper(Token *tok)
if
(
ch
==
'*'
&&
_yychar
==
'/'
)
goto
_Ldone
;
if
(
_yychar
==
'<'
)
yyinp
();
if
(
!
_yychar
||
std
::
isspace
(
_yychar
))
doxy
=
true
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment