Are functions calls in a constructor’s initializer-list sequenced?
So I am wondering if it is guaranteed that t.a == 0 and t.b == 1? This will always be true so long as a comes before b in the class declaration and nothing else calls f() between the initialization of a and b. Class members are initialized in the order they are declared in … Read more