stdcpp/tsrc/Stdcpp_test/stdcxx/tstapps/algorithms/src/25.generate.cpp
branchRCL_3
changeset 57 2efc27d87e1c
parent 56 acd3cd4aaceb
--- a/stdcpp/tsrc/Stdcpp_test/stdcxx/tstapps/algorithms/src/25.generate.cpp	Tue Aug 31 16:54:36 2010 +0300
+++ b/stdcpp/tsrc/Stdcpp_test/stdcxx/tstapps/algorithms/src/25.generate.cpp	Wed Sep 01 12:36:54 2010 +0100
@@ -76,11 +76,11 @@
 
     // Size must be convertible to an integral type
     operator int () const { return val_; }
-    int operator++()
+    operator++()
     {
     return ++val_;
     }
-    int operator--()
+    operator--()
     {
     return --val_;
     }