Skip to content

Instantly share code, notes, and snippets.

@sharth
Created November 24, 2014 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sharth/d56897dfc6b3ed4e8023 to your computer and use it in GitHub Desktop.
Save sharth/d56897dfc6b3ed4e8023 to your computer and use it in GitHub Desktop.
#include <map>
int main() {
std::map<int, int> m;
m[0] = m.size();
// m[0] can legally be either 0 or 1.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment