From 76f5423beba7bd44910e653923539ae544cf1101 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Sat, 28 Sep 2013 19:04:15 +0100 Subject: [PATCH] minor code cleaning --- latan/MathCompiler.cpp | 3 +++ latan/MathCompiler.hpp | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/latan/MathCompiler.cpp b/latan/MathCompiler.cpp index 927adc4..e6d3110 100644 --- a/latan/MathCompiler.cpp +++ b/latan/MathCompiler.cpp @@ -85,6 +85,9 @@ MathParserState::~MathParserState(void) #define CODE_WIDTH 6 #define CODE_MOD setw(CODE_WIDTH) << left +Instruction::~Instruction(void) +{} + void Instruction::Print(std::ostream &out) const { out << CODE_MOD << "" << CODE_MOD << "ABSTRACT INSTRUCTION!"; diff --git a/latan/MathCompiler.hpp b/latan/MathCompiler.hpp index 8d2838d..cb02806 100644 --- a/latan/MathCompiler.hpp +++ b/latan/MathCompiler.hpp @@ -63,7 +63,7 @@ private: }; /****************************************************************************** - * Virtual machine classes * + * Virtual machine code classes * ******************************************************************************/ typedef std::map VarTable; @@ -71,7 +71,7 @@ typedef std::map VarTable; class Instruction { public: - virtual ~Instruction() {}; + virtual ~Instruction(); // instruction execution virtual void operator()(std::stack& dstack, VarTable& vtable) = 0; friend std::ostream& operator<<(std::ostream& out, const Instruction& ins);