Sunday, July 28, 2013

C++11

I can definitively say that my favorite addition in C++11 is the fact that I can finally write this:
std::vector<std::vector<int>>
Instead of this:
std::vector<std::vector<int> >

No comments:

Post a Comment