Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Declarations of loop indices should be included within a for statement:

Code Block
bgColor#ccccff
for (int i = 0; i < mx; ++i ) {
  /* ... */
}

...