fix warning

This commit is contained in:
xensik 2022-07-19 14:40:22 +02:00
parent 0da3653f26
commit 30352b21a7

View File

@ -268,7 +268,7 @@ void decompiler::decompile_instruction(const instruction::ptr& inst, bool last)
auto node = std::make_unique<ast::expr_identifier>(loc, locals_.at(std::stoi(inst->data[0])));
stack_.push(std::move(node));
}
catch(const std::exception& e)
catch (const std::exception&)
{
auto node = std::make_unique<ast::expr_identifier>(loc, "broken_code!!");
stack_.push(std::move(node));