mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2025-04-05 09:35:54 +01:00
minor code cleaning
This commit is contained in:
parent
2efc4ef6c5
commit
76f5423beb
@ -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 << "<null>" << CODE_MOD << "ABSTRACT INSTRUCTION!";
|
||||
|
@ -63,7 +63,7 @@ private:
|
||||
};
|
||||
|
||||
/******************************************************************************
|
||||
* Virtual machine classes *
|
||||
* Virtual machine code classes *
|
||||
******************************************************************************/
|
||||
typedef std::map<std::string,double> VarTable;
|
||||
|
||||
@ -71,7 +71,7 @@ typedef std::map<std::string,double> VarTable;
|
||||
class Instruction
|
||||
{
|
||||
public:
|
||||
virtual ~Instruction() {};
|
||||
virtual ~Instruction();
|
||||
// instruction execution
|
||||
virtual void operator()(std::stack<double>& dstack, VarTable& vtable) = 0;
|
||||
friend std::ostream& operator<<(std::ostream& out, const Instruction& ins);
|
||||
|
Loading…
x
Reference in New Issue
Block a user