From 28f8e519f4037058bc1c607d0c8e1919d4e8edbc Mon Sep 17 00:00:00 2001 From: "jh9216.park" Date: Thu, 14 Oct 2021 02:52:58 -0400 Subject: [PATCH] Fix build error Change-Id: I7a23ae54e701ca50521acbcf0c225970026da0e5 Signed-off-by: jh9216.park --- idlc/gen_cion/cs_cion_stub_gen.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/idlc/gen_cion/cs_cion_stub_gen.cc b/idlc/gen_cion/cs_cion_stub_gen.cc index 1374024..73b811f 100644 --- a/idlc/gen_cion/cs_cion_stub_gen.cc +++ b/idlc/gen_cion/cs_cion_stub_gen.cc @@ -229,11 +229,9 @@ void CsCionStubGen::GenAsyncInvocation(std::ofstream& stream, const Declaration& // Invoke cnt = 1; std::string m; - bool hasRet = false; if (decl.GetType().ToString() != "void") { m += "var retVal = "; - hasRet = true; } m += "b." + decl.GetID() + "("; -- 2.7.4