Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
fa239ea9
Commit
fa239ea9
authored
Dec 19, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issue parsing @end directly followed by the end of the file
parent
60abada8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
doxygen.cpp
src/doxygen.cpp
+4
-0
No files found.
src/doxygen.cpp
View file @
fa239ea9
...
...
@@ -9329,6 +9329,10 @@ static void parseFile(ParserInterface *parser,
msg
(
"Reading %s...
\n
"
,
fn
);
readInputFile
(
fileName
,
preBuf
);
}
if
(
preBuf
.
data
()
&&
preBuf
.
curPos
()
>
0
&&
*
(
preBuf
.
data
()
+
preBuf
.
curPos
()
-
1
)
!=
'\n'
)
{
preBuf
.
addChar
(
'\n'
);
// add extra newline to help parser
}
BufStr
convBuf
(
preBuf
.
curPos
()
+
1024
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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