The order of initialization of non-static data members is specified in paragraph 10 of 12.6.2 Initializing bases and members [class.base.init]
(emphasis mine):
In a non-delegating constructor, initialization proceeds in the following order:
[... things regarding bases]
— Then, non-static data members are initialized in the order they were declared in the class definition
(again regardless of the order of the mem-initializers).
— Finally, the compound-statement of the constructor body is executed.
As you can see, whether the members are initialized with a so called mem-initializer (i.e. inside a constructor, before its body) or a brace-or-equal-initializer (i.e. in the class definition) or with nothing at all has no bearing on initialization order.