Skip to content

Instantly share code, notes, and snippets.

@acmorrow
Created February 5, 2013 19:36
Show Gist options
  • Save acmorrow/4716989 to your computer and use it in GitHub Desktop.
Save acmorrow/4716989 to your computer and use it in GitHub Desktop.
// C++11 removes the silly template angle bracket rules:
std::vector<std::map<std::string, std::string> > // C++03, lame
std::vector<std::map<std::string, std::string>> // C++11, not lame
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment