You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Standardise use of type aliases and rvalue references in for loops (#32)
We currently use a mixture of type aliases and typedefs in our code. Since type aliasing
provides a strict superset of the functionality of typedefs, but is otherwise essentially
equivalent, it seems sensible to standardise on only using type aliasing throughout. This also
adopts the convention of not using rvalue references in for loops, except for template code, on
grounds of readability.
0 commit comments