Are you talking about the order of the initializer list on a class constructor? Like this:
class CSortMemberInitialization
{
private:
int m_nWidth;
int m_nHeight;
std::string m_strName;
public:
CSortMemberInitialization();
};
CSortMemberInitialization::CSortMemberInitialization() : m_strName("test"), m_nHeight(0), m_nWidth(0)
{
}
if so then we are considering a feature to make sure the initializer list and then class members are in the same order:
case=8368