From 30352b21a7e64a92a0a242c376c9f31577bf3ae3 Mon Sep 17 00:00:00 2001 From: xensik Date: Tue, 19 Jul 2022 14:40:22 +0200 Subject: [PATCH] fix warning --- src/t6/xsk/decompiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/t6/xsk/decompiler.cpp b/src/t6/xsk/decompiler.cpp index feadf9a9..6d23ade0 100644 --- a/src/t6/xsk/decompiler.cpp +++ b/src/t6/xsk/decompiler.cpp @@ -268,7 +268,7 @@ void decompiler::decompile_instruction(const instruction::ptr& inst, bool last) auto node = std::make_unique(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(loc, "broken_code!!"); stack_.push(std::move(node));