Fix order of initialization list in CalculatorManager, COpndCommand (#332)

This ensures the initialization order matches the layout of member
fields in class declaration
This commit is contained in:
Michał Janiszewski 2019-03-21 00:45:30 +01:00 committed by Howard Wolosky
parent 426a6c058d
commit 597caf9c6b
2 changed files with 6 additions and 6 deletions

View file

@ -98,8 +98,8 @@ void CBinaryCommand::Accept(_In_ ISerializeCommandVisitor &commandVisitor)
COpndCommand::COpndCommand(shared_ptr<CalculatorVector<int>> const &commands, bool fNegative, bool fDecimal, bool fSciFmt) :
m_commands(commands),
m_fNegative(fNegative),
m_fDecimal(fDecimal),
m_fSciFmt(fSciFmt),
m_fDecimal(fDecimal),
m_fInitialized(false),
m_value{}
{}