Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
de86a1f4
Commit
de86a1f4
authored
Dec 04, 2009
by
Roberto Raggi
Browse files
Removed unused formal argument.
parent
ef9db9cf
Changes
1
Show whitespace changes
Inline
Side-by-side
src/plugins/cpptools/cppfindreferences.cpp
View file @
de86a1f4
...
...
@@ -154,7 +154,7 @@ class MyReduce: public std::binary_function<QList<Usage> &, QList<Usage>, void>
public:
MyReduce
(
QFutureInterface
<
Usage
>
*
future
)
:
future
(
future
)
{}
void
operator
()(
QList
<
Usage
>
&
uu
,
const
QList
<
Usage
>
&
usages
)
void
operator
()(
QList
<
Usage
>
&
,
const
QList
<
Usage
>
&
usages
)
{
foreach
(
const
Usage
&
u
,
usages
)
future
->
reportResult
(
u
);
...
...
Write
Preview
Supports
Markdown
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