cppcon2017 Curiously Recurring C++ Bugs at facebook

map<char, int> occ;
for( char c : str)
{
  occ[c]++;
}