1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-12-22 08:54:28 +00:00

compatibility fix: __unused changed to __dumb

This commit is contained in:
2015-06-15 15:20:29 +02:00
parent cb45b34ddc
commit 897dae5b2f
7 changed files with 45 additions and 45 deletions

View File

@@ -462,7 +462,7 @@ void VarNode::compile(Program &program, RunContext &context) const
}
// CstNode compile /////////////////////////////////////////////////////////////
void CstNode::compile(Program &program, RunContext &context __unused) const
void CstNode::compile(Program &program, RunContext &context __dumb) const
{
PUSH_INS(program, Push, strTo<double>(getName()));
}