PipelineC icon indicating copy to clipboard operation
PipelineC copied to clipboard

Loop iterators must be declared outside of the loop

Open JulianKemmerer opened this issue 1 year ago • 0 comments

for (uint32_t i = 0; i < 32; i = i + 1) {
       ...
}

needs to be

uint32_t i;
for (i = 0; i < 32; i = i + 1) {
      ...
}

JulianKemmerer avatar Oct 28 '22 18:10 JulianKemmerer