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
b07832a1
Commit
b07832a1
authored
Sep 13, 2013
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compilation issues in doxyapp
parent
d3b66fcb
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
.gitignore
.gitignore
+1
-0
doxyapp.cpp
addon/doxyapp/doxyapp.cpp
+7
-0
No files found.
.gitignore
View file @
b07832a1
...
...
@@ -27,6 +27,7 @@
/addon/doxmlparser/src/Makefile
/addon/doxmlparser/test/Makefile
/addon/doxyapp/Makefile
/addon/doxyapp/Makefile.doxyapp
/addon/doxywizard/Makefile
/addon/doxywizard/Makefile.doxywizard
/addon/doxywizard/config_lex.cpp
...
...
addon/doxyapp/doxyapp.cpp
View file @
b07832a1
...
...
@@ -49,6 +49,9 @@ class XRefDummyCodeGenerator : public CodeOutputInterface
void
codify
(
const
char
*
)
{}
void
writeCodeLink
(
const
char
*
,
const
char
*
,
const
char
*
,
const
char
*
,
const
char
*
)
{}
void
writeLineNumber
(
const
char
*
,
const
char
*
,
const
char
*
,
int
)
{}
virtual
void
writeTooltip
(
const
char
*
,
const
DocLinkInfo
&
,
const
char
*
,
const
char
*
,
const
SourceLinkInfo
&
,
const
SourceLinkInfo
&
)
{}
void
startCodeLine
(
bool
)
{}
void
endCodeLine
()
{}
void
startCodeAnchor
(
const
char
*
)
{}
...
...
@@ -107,6 +110,9 @@ static void findXRefSymbols(FileDef *fd)
// get the interface to a parser that matches the file extension
ParserInterface
*
pIntf
=
Doxygen
::
parserManager
->
getParser
(
fd
->
getDefFileExtension
());
// get the programming language from the file name
SrcLangExt
lang
=
getLanguageFromFileName
(
fd
->
name
());
// reset the parsers state
pIntf
->
resetCodeParserState
();
...
...
@@ -117,6 +123,7 @@ static void findXRefSymbols(FileDef *fd)
pIntf
->
parseCode
(
*
xrefGen
,
0
,
fileToString
(
fd
->
absFilePath
()),
lang
,
FALSE
,
0
,
fd
);
...
...
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