This isn't a major problem, more just an irritation which i'm sure is due to how i've set my IDE up. Let's say i have a vector<string> which is doing something or other, and i wish to itterate through it, i write a loop such as this:
for(int i=0;i<array.size();i++){(...)}
While this works fine, when i type the semi-colon at the end of array.size, it instantly completes the parentheses of the loop, putting the semi-colon at the end of the for loop not at the end of the array.size function and requiring me to first out handle the initial confusion of what it's just done to me, then to remove the semi-colon at the end, place it in the correct place, and complete the activity with i++. This is a minor irritation and consumes a small amount of time at each point it occurs.
Please help. Thanks!
I didn't find the right solution from the Internet.