Remove empty COpndCommand destructor. Cleanup constructor declaration.

This commit is contained in:
Josh Koon
2019-01-29 14:28:03 -08:00
parent b70a12c6cf
commit ebfce5a8cd
2 changed files with 9 additions and 10 deletions

View File

@@ -49,11 +49,11 @@ private:
class COpndCommand : public IOpndCommand
{
public:
COpndCommand(_In_ std::shared_ptr<CalculatorVector<int>> const &commands,
COpndCommand(
std::shared_ptr<CalculatorVector<int>> const &commands,
bool fNegative,
bool fDecimal,
bool fSciFmt);
~COpndCommand();
void Initialize(CalcEngine::Rational const& rat);
const std::shared_ptr<CalculatorVector<int>> & GetCommands() const;