A6-5-4: For-init-statement and expression should not perform actions other than loop-counter initialization and modification
This conflicts with well published standards that say you can use an auto iterator to walk through a vector or other standard list.
i.e. for (auto iter = mapping.begin(); iter != mapping.end(); iter++)
Let's consider allowing iterators, or adding an option to allow them at least.
A6-5-4: For-init-statement and expression should not perform actions other than loop-counter initialization and modification
This conflicts with well published standards that say you can use an auto iterator to walk through a vector or other standard list.
i.e. for (auto iter = mapping.begin(); iter != mapping.end(); iter++)
Let's consider allowing iterators, or adding an option to allow them at least.