Skip to content
Snippets Groups Projects
Commit de86a1f4 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Removed unused formal argument.

parent ef9db9cf
No related branches found
No related tags found
No related merge requests found
...@@ -154,7 +154,7 @@ class MyReduce: public std::binary_function<QList<Usage> &, QList<Usage>, void> ...@@ -154,7 +154,7 @@ class MyReduce: public std::binary_function<QList<Usage> &, QList<Usage>, void>
public: public:
MyReduce(QFutureInterface<Usage> *future): future(future) {} 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) foreach (const Usage &u, usages)
future->reportResult(u); future->reportResult(u);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment