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
For me, the issue was that one of the arguments was a pointer, and I passed NULL directly as an argument. To solve this, I simply created a new NULL pointer which I passed to the function as an l-value instead.