diff -r 47c74d1534e1 -r ddc455616bd6 stdcpp/tsrc/Stdcpp_test/stdcxx/tstapps/algorithms/src/25.generate.cpp --- a/stdcpp/tsrc/Stdcpp_test/stdcxx/tstapps/algorithms/src/25.generate.cpp Fri Apr 16 16:46:38 2010 +0300 +++ b/stdcpp/tsrc/Stdcpp_test/stdcxx/tstapps/algorithms/src/25.generate.cpp Mon May 03 14:06:43 2010 +0300 @@ -76,11 +76,11 @@ // Size must be convertible to an integral type operator int () const { return val_; } - operator++() + int operator++() { return ++val_; } - operator--() + int operator--() { return --val_; }