Fix indentation and extra newline (#198)

This commit is contained in:
Petr Sedláček 2019-03-09 08:47:40 +01:00 committed by Howard Wolosky
parent 595ae6a8ff
commit 248b762b80

View File

@ -135,7 +135,7 @@ void COpndCommand::AppendCommand(int command)
if (command == IDC_PNT) if (command == IDC_PNT)
{ {
m_fDecimal = true; m_fDecimal = true;
} }
} }
void COpndCommand::ToggleSign() void COpndCommand::ToggleSign()
@ -178,11 +178,11 @@ void COpndCommand::RemoveFromEnd()
if (nOpCode == IDC_PNT) if (nOpCode == IDC_PNT)
{ {
m_fDecimal = false; m_fDecimal = false;
} }
m_commands->RemoveAt(nCommands - 1); m_commands->RemoveAt(nCommands - 1);
}
} }
} }
}
bool COpndCommand::IsNegative() const bool COpndCommand::IsNegative() const
{ {
@ -303,4 +303,3 @@ void COpndCommand::Accept(_In_ ISerializeCommandVisitor &commandVisitor)
{ {
commandVisitor.Visit(*this); commandVisitor.Visit(*this);
} }