[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [csmith-dev] csmith-dev Digest, Vol 44, Issue 2



         for (auto i = values.begin(); i != values.end(); ++i) {

Or if we want to go really crazy:

  for (auto i : values) {

John