Skip to content

Instantly share code, notes, and snippets.

Created October 12, 2017 20:40
Show Gist options
  • Save anonymous/88da8be0fbfaa463568ef1f9d9f4c748 to your computer and use it in GitHub Desktop.
Save anonymous/88da8be0fbfaa463568ef1f9d9f4c748 to your computer and use it in GitHub Desktop.
#include <boost/unordered_map.hpp>
#include <map_printer.hpp>
int main() {
boost::unordered_map<int, int> myMap {{1, 2}, {3, 4}, {5, 6}};
print_map(myMap);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment