up vote 0 down vote favorite
share [g+] share [fb]

So I have a problem....

I've a method
void MainWindow::loadItems(const ArticleStore& store)
{
}

that I try to call like this inside the MainWindow class
ArticleStore store();
loadItems(store)

And I get this error
mainwindow.cpp:15: error: no matching function for call to ‘MainWindow::loadItems(ArticleStore (&)())’
mainwindow.h:19: note: candidates are: void MainWindow::loadItems(const ArticleStore&)
ArticleStore definition:
class ArticleStore
{
public:
ArticleStore();
};

So the question is what went wrong?

link|improve this question
could you post some source-code as well? It looks like you messed something up in the call. – Tobias Langner Aug 2 '09 at 11:26
do you have multiple definitions of ArticleStore perhaps? – Lasse V. Karlsen Aug 2 '09 at 11:26
Please do not attempt to format your code using HTML tags. Use the 1010 button above the editor. – anon Aug 2 '09 at 11:30
feedback

2 Answers

up vote 8 down vote accepted

It's because

ArticleStore store();

is interpreted by the compiler as a function declaration. That's explain why compiler is looking for ‘MainWindow::loadItems(ArticleStore (&)())’ You must write instead:

Article store; // With no parenthesis
link|improve this answer
feedback
ArticleStore store; loadItems(store);

Notice the lack of brackets after the name. The compiler is mistaking your version as a function prototype for a function called store, taking no arguments and returning an ArticleStore instance. Then you pass this function pointer to the next function which doesn't work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown