Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Removing whitespace

...

Code Block
bgColor#ccccff
langcpp
#include <algorithm>
#include <vector>

void f(const std::vector<int> &c) {
  const auto e = i + std::min( 20, c.size());
  for (auto i = c.begin(), i != e; ++i) {
    // ...
  }
}

...