Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scopelint: Fix improper range loop var reference
Error from `scopelint` linter: "Using a reference for the variable on range scope `img`" Fix: Use index from range loop to *reach into* the slice argument to retrieve the address of those values instead of using the range loop variable, which likely would have been a subtle source of bugs later on. refs #6, #11, #12
- Loading branch information