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
9631035b
Commit
9631035b
authored
Oct 12, 2013
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 709870 - Broken links on members HTML page when using BUILTIN_STL_SUPPORT
parent
bfb4ae4c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
24 deletions
+31
-24
classdef.cpp
src/classdef.cpp
+31
-24
No files found.
src/classdef.cpp
View file @
9631035b
...
...
@@ -2255,7 +2255,8 @@ void ClassDef::writeMemberList(OutputList &ol)
ol
.
writeString
(
"</td>"
);
memberWritten
=
TRUE
;
}
else
if
(
!
Config_getBool
(
"HIDE_UNDOC_MEMBERS"
)
&&
else
if
(
!
cd
->
isArtificial
()
&&
!
Config_getBool
(
"HIDE_UNDOC_MEMBERS"
)
&&
(
protectionLevelVisible
(
md
->
protection
())
||
md
->
isFriend
())
)
// no documentation,
// generate link to the class instead.
...
...
@@ -4143,6 +4144,8 @@ int ClassDef::countInheritedDecMembers(MemberListType lt,
{
ClassDef
*
icd
=
ibcd
->
classDef
;
int
lt1
,
lt2
;
if
(
icd
->
isLinkable
())
{
convertProtectionLevel
(
lt
,
ibcd
->
prot
,
&
lt1
,
&
lt2
);
//printf("%s: convert %d->(%d,%d) prot=%d\n",
// icd->name().data(),lt,lt1,lt2,ibcd->prot);
...
...
@@ -4157,6 +4160,7 @@ int ClassDef::countInheritedDecMembers(MemberListType lt,
}
}
}
}
return
inhCount
;
}
...
...
@@ -4279,6 +4283,8 @@ void ClassDef::writeInheritedMemberDeclarations(OutputList &ol,
for
(
it
.
toFirst
();(
ibcd
=
it
.
current
());
++
it
)
{
ClassDef
*
icd
=
ibcd
->
classDef
;
if
(
icd
->
isLinkable
())
{
int
lt1
,
lt3
;
convertProtectionLevel
(
lt
,
ibcd
->
prot
,
&
lt1
,
&
lt3
);
if
(
lt2
==-
1
&&
lt3
!=-
1
)
...
...
@@ -4292,7 +4298,7 @@ void ClassDef::writeInheritedMemberDeclarations(OutputList &ol,
if
(
lt1
!=-
1
)
{
icd
->
writeMemberDeclarations
(
ol
,(
MemberListType
)
lt1
,
title
,
QCString
(),
FALSE
,
inheritedFrom
,
lt2
,
FALSE
/*invert*/
,
TRUE
,
visitedClasses
);
title
,
QCString
(),
FALSE
,
inheritedFrom
,
lt2
,
FALSE
,
TRUE
,
visitedClasses
);
}
}
else
...
...
@@ -4302,6 +4308,7 @@ void ClassDef::writeInheritedMemberDeclarations(OutputList &ol,
}
}
}
}
ol
.
popGeneratorState
();
}
...
...
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