Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
0.10.0
-
None
-
None
Description
The patch I'm about to attach fixes warnings with any version of GCC, caused by
initialising members in the wrong order in a constructor initialiser
list. The standard says that members will be initialised in the order
they're declared in the class body, not the order they appear in the
init list, so for clarity's sake the init list should be in the same
order.