Click here to Skip to main content
15,881,588 members

Comments by Jon Summers (Top 4 by date)

Jon Summers 23-Jan-12 13:33pm View    
Deleted
Reason for my vote of 2
Not a resolution. May cause chaos.
Jon Summers 28-Nov-11 14:42pm View    
Deleted
It's not clear what you expect to happen. You have a class (a struct can viewed as a class having all its members public) named CMyClass. It has a function f();
Calling a class constructor within a member of that class doesn't make a lot of sense.
Why not do this?
CMyclass oMyClass; // Constructor called automatically
oMyClass.f (); // ???
Jon Summers 17-Oct-11 15:33pm View    
Deleted
Reason for my vote of 4
An interesting idiom.
Jon Summers 6-Sep-11 12:01pm View    
Deleted
Reason for my vote of 4
Excellent reminder to browse Boost to see what's in the latest version!