Changes between Version 27 and Version 28 of Coding_Conventions


Ignore:
Timestamp:
Apr 13, 2015, 11:59:08 PM (9 years ago)
Author:
trompetin17
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Coding_Conventions

    v27 v28  
    232232 * Use "for range" loop instead of "std::for_each" when you use "begin()" and "end()" parameters
    233233{{{
     234#!cpp
    234235//Avoid
    235236std::vector<T> anyVector;