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
b698431e
Commit
b698431e
authored
Feb 11, 2002
by
dimitri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed pointer bug and config update bug
parent
d1e917df
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
doxygen.cpp
src/doxygen.cpp
+11
-6
No files found.
src/doxygen.cpp
View file @
b698431e
/******************************************************************************
*
*
*
$Id$
*
*
* Copyright (C) 1997-2002 by Dimitri van Heesch.
...
...
@@ -4100,6 +4100,8 @@ static void findMember(Entry *root,
bool
isDefine
=
FALSE
;
{
MemberName
*
mn
=
Doxygen
::
functionNameSDict
[
funcName
];
if
(
mn
)
{
MemberDef
*
md
=
mn
->
first
();
while
(
md
&&
!
isDefine
)
{
...
...
@@ -4107,6 +4109,7 @@ static void findMember(Entry *root,
md
=
mn
->
next
();
}
}
}
if
((
mn
=
Doxygen
::
memberNameSDict
[
funcName
])
==
0
)
{
mn
=
new
MemberName
(
funcName
);
...
...
@@ -5837,7 +5840,6 @@ static void generateConfigFile(const char *configFile,bool shortList,
bool
writeToStdout
=
(
configFile
[
0
]
==
'-'
&&
configFile
[
1
]
==
'\0'
);
if
(
fileOpened
)
{
Config
::
instance
()
->
init
();
Config
::
instance
()
->
writeTemplate
(
&
f
,
shortList
,
updateOnly
);
if
(
!
writeToStdout
)
{
...
...
@@ -6563,6 +6565,8 @@ void readConfiguration(int argc, char **argv)
* Parse or generate the config file *
**************************************************************************/
Config
::
instance
()
->
init
();
if
(
genConfig
)
{
generateConfigFile
(
configName
,
shortList
);
...
...
@@ -6600,6 +6604,7 @@ void readConfiguration(int argc, char **argv)
}
}
if
(
!
Config
::
instance
()
->
parse
(
configName
))
{
err
(
"Error: could not open or read configuration file %s!
\n
"
,
configName
);
...
...
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