This compiles fine in Visual studio, but why not in XCode?
class A()
{};
someMethod(A& a);
someMethod(A()); //error: no matching function call in XCode only :(
Is this bad form? it seems annoying to have to write the following every time:
A a;
someMethod(a); //successful compile on Xcode
Am i missing something? I am not very experienced so thank you for any help!