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
d969219b
Commit
d969219b
authored
Aug 21, 2013
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed regression when nested class were processed before their parent
parent
54bf87c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
doxygen.cpp
src/doxygen.cpp
+7
-5
No files found.
src/doxygen.cpp
View file @
d969219b
...
@@ -1293,11 +1293,13 @@ static void addClassToContext(EntryNav *rootNav)
...
@@ -1293,11 +1293,13 @@ static void addClassToContext(EntryNav *rootNav)
{
{
tagName
=
rootNav
->
tagInfo
()
->
tagName
;
tagName
=
rootNav
->
tagInfo
()
->
tagName
;
refFileName
=
rootNav
->
tagInfo
()
->
fileName
;
refFileName
=
rootNav
->
tagInfo
()
->
fileName
;
}
int
i
;
int
i
;
if
((
i
=
fullName
.
find
(
"::"
))
!=-
1
)
if
((
i
=
fullName
.
find
(
"::"
))
!=-
1
)
// symbols imported via tag files may come without the parent scope,
{
// so we artificially create it here
buildScopeFromQualifiedName
(
fullName
,
fullName
.
contains
(
"::"
),
root
->
lang
);
{
buildScopeFromQualifiedName
(
fullName
,
fullName
.
contains
(
"::"
),
root
->
lang
);
}
}
}
cd
=
new
ClassDef
(
root
->
fileName
,
root
->
startLine
,
root
->
startColumn
,
cd
=
new
ClassDef
(
root
->
fileName
,
root
->
startLine
,
root
->
startColumn
,
fullName
,
sec
,
tagName
,
refFileName
,
TRUE
,
root
->
spec
&
Entry
::
Enum
);
fullName
,
sec
,
tagName
,
refFileName
,
TRUE
,
root
->
spec
&
Entry
::
Enum
);
...
...
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