
@ASalvadorini Okay, I think they fixed it xD but if you search on Google, a ton of people were complaining about this. I swear I'm not crazy! 😅

English
bit_sparkle
1.4K posts

@bit_sparkle
DIY fanatic Bored CRUD web developer by day Enthusiast C / C++ / Flutter developer by night Sometimes I focus on electronics, too








People often ask me why do I choose to do pre-increments in my for-loops instead of post-increments. The answer is actually very simple. I don't fucking know, stop asking me that.

Pre-increment operator doesn't need to create a temporary copy of the object. It can be faster. No difference for integers of course (they are in registers), but matters if you use a complex iterator object. Compiler tries to optimize the copy away in release builds.