forked from mirror/openmw-tes3mp
Remove unnecessary virtual destructor
This commit is contained in:
parent
8c5aae0722
commit
73463cd12f
2 changed files with 0 additions and 5 deletions
|
@ -59,8 +59,6 @@ namespace Compiler
|
||||||
mExprParser (errorHandler, context, locals, literals), mAllowExpression (allowExpression)
|
mExprParser (errorHandler, context, locals, literals), mAllowExpression (allowExpression)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
LineParser::~LineParser() {}
|
|
||||||
|
|
||||||
bool LineParser::parseInt (int value, const TokenLoc& loc, Scanner& scanner)
|
bool LineParser::parseInt (int value, const TokenLoc& loc, Scanner& scanner)
|
||||||
{
|
{
|
||||||
if (mAllowExpression && mState==BeginState)
|
if (mAllowExpression && mState==BeginState)
|
||||||
|
|
|
@ -52,9 +52,6 @@ namespace Compiler
|
||||||
///< \param allowExpression Allow lines consisting of a naked expression
|
///< \param allowExpression Allow lines consisting of a naked expression
|
||||||
/// (result is send to the messagebox interface)
|
/// (result is send to the messagebox interface)
|
||||||
|
|
||||||
virtual ~LineParser();
|
|
||||||
///< destructor
|
|
||||||
|
|
||||||
virtual bool parseInt (int value, const TokenLoc& loc, Scanner& scanner);
|
virtual bool parseInt (int value, const TokenLoc& loc, Scanner& scanner);
|
||||||
///< Handle an int token.
|
///< Handle an int token.
|
||||||
/// \return fetch another token?
|
/// \return fetch another token?
|
||||||
|
|
Loading…
Reference in a new issue