19 Aug
2002
19 Aug
'02
4:43 p.m.
From: "Matthew Dempsky"
I was just playing around with the boost.lambda library and thought of playing a bit with it using gcc's typeof extension... this is the code I used (just slightly modified documentation code):
typedef typeof(_1 = 1) assign_one; list<int> v(10); for_each(v.begin(), v.end(), assign_one());
Perhaps typeof(_1 = 1) assign_one(_1 = 1); will work?