From 0284e060164a3b4717059ebb84f67d84a255549c Mon Sep 17 00:00:00 2001 From: Andi Drebes Date: Fri, 7 Jan 2022 10:40:29 +0100 Subject: [PATCH] fix(compiler): Remove unused variable err in lib/Runtime/context.cpp --- compiler/lib/Runtime/context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/lib/Runtime/context.cpp b/compiler/lib/Runtime/context.cpp index 091314146..07daec465 100644 --- a/compiler/lib/Runtime/context.cpp +++ b/compiler/lib/Runtime/context.cpp @@ -18,8 +18,8 @@ get_keyswitch_key(mlir::concretelang::RuntimeContext *context) { LweBootstrapKey_u64 * get_bootstrap_key(mlir::concretelang::RuntimeContext *context) { - int err; #ifdef CONCRETELANG_PARALLEL_EXECUTION_ENABLED + int err; std::string threadName = hpx::get_thread_name(); auto bskIt = context->bsk.find(threadName); if (bskIt == context->bsk.end()) {