Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Stephan T. Lavavej: Core C++, 1 of n
Apr 06, 2013 at 7:32 AMI'm with example from 3.4.1 Unqualified name lookup, using VS2012-update2.
typedef int f; namespace N { struct A { friend void f( A & ); operator int(); void g( A a ) { int i = f( a ); } // f is the typedef, not the friend function: equivalent to int(a) }; }Compiler complains that [friend] function f() returns a void that cannot be assigned to int. Thoughts?
Thank you Mr. STL!