I am writing a C++ library in Xcode 4.2
One of my classes won\'t compile with this error : \"attempt to use a deleted function\".
There is no specific indica
I had a similar message with threads (C++11). It turned out that I was passing the wrong number of parameters to the function called by the thread so the thread did not find any function suitable and gave that message.