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
5bebcfb4
Commit
5bebcfb4
authored
Nov 29, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove bogus argument to avoid compiler warning
parent
738c0dd8
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
filedef.cpp
src/filedef.cpp
+1
-1
groupdef.cpp
src/groupdef.cpp
+1
-1
namespacedef.cpp
src/namespacedef.cpp
+1
-1
No files found.
src/filedef.cpp
View file @
5bebcfb4
...
...
@@ -1857,7 +1857,7 @@ void FileDef::writeMemberDeclarations(OutputList &ol,MemberListType lt,const QCS
}
else
{
ml
->
writeDeclarations
(
ol
,
0
,
0
,
this
,
0
,
title
,
0
,
definitionType
()
);
ml
->
writeDeclarations
(
ol
,
0
,
0
,
this
,
0
,
title
,
0
);
}
}
}
...
...
src/groupdef.cpp
View file @
5bebcfb4
...
...
@@ -1621,7 +1621,7 @@ void GroupDef::writeMemberDeclarations(OutputList &ol,MemberListType lt,const QC
}
if
(
ml
)
{
ml
->
writeDeclarations
(
ol
,
0
,
0
,
0
,
this
,
title
,
0
,
definitionType
()
);
ml
->
writeDeclarations
(
ol
,
0
,
0
,
0
,
this
,
title
,
0
);
}
}
...
...
src/namespacedef.cpp
View file @
5bebcfb4
...
...
@@ -1088,7 +1088,7 @@ MemberList *NamespaceDef::getMemberList(MemberListType lt) const
void
NamespaceDef
::
writeMemberDeclarations
(
OutputList
&
ol
,
MemberListType
lt
,
const
QCString
&
title
)
{
MemberList
*
ml
=
getMemberList
(
lt
);
if
(
ml
)
ml
->
writeDeclarations
(
ol
,
0
,
this
,
0
,
0
,
title
,
0
,
DefinitionIntf
::
TypeNamespace
);
if
(
ml
)
ml
->
writeDeclarations
(
ol
,
0
,
this
,
0
,
0
,
title
,
0
);
}
void
NamespaceDef
::
writeMemberDocumentation
(
OutputList
&
ol
,
MemberListType
lt
,
const
QCString
&
title
)
...
...
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