Skip to content

Commit

Permalink
Fix indentation and extra newline (microsoft#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrspelos authored and HowardWolosky committed Mar 9, 2019
1 parent 595ae6a commit 248b762
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/CalcManager/ExpressionCommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ void COpndCommand::AppendCommand(int command)
if (command == IDC_PNT)
{
m_fDecimal = true;
}
}
}

void COpndCommand::ToggleSign()
Expand Down Expand Up @@ -178,11 +178,11 @@ void COpndCommand::RemoveFromEnd()
if (nOpCode == IDC_PNT)
{
m_fDecimal = false;
}
}
m_commands->RemoveAt(nCommands - 1);
}
}
}
}

bool COpndCommand::IsNegative() const
{
Expand Down Expand Up @@ -303,4 +303,3 @@ void COpndCommand::Accept(_In_ ISerializeCommandVisitor &commandVisitor)
{
commandVisitor.Visit(*this);
}

0 comments on commit 248b762

Please sign in to comment.