[ create a new paste ] login | about

Link: http://codepad.org/VtLmqNlW    [ raw code | fork ]

C++, pasted on Jan 10:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <algorithm>
#include <vector>

template<typename T>
struct foo
{
   void operator()(T& t)
   {
      ++t;
   }
};

int main()
{

   std::vector<int> v;
   std::for_each(v.begin (),v.end(),foo<int>());

   return 0;
}


Output:
No errors or program output.


Create a new paste based on this one


Comments: