Malcolm: Usability improvements in GCC 8
Malcolm: Usability improvements in GCC 8
Posted Mar 24, 2018 16:59 UTC (Sat) by zlynx (guest, #2285)In reply to: Malcolm: Usability improvements in GCC 8 by anton
Parent article: Malcolm: Usability improvements in GCC 8
If the for loop has explicit, understandable termination conditions there's no problem using size_t. GCC as far as I can tell compiles the loop the same way for int or size_t. And size_t is always better because it won't fail like int on unusually large indexes.
So yeah, just use size_t.
