Skip to content

Commit

Permalink
[onert] Fix unused-private-field error in controlflow::KernelGenerator (
Browse files Browse the repository at this point in the history
Samsung#722)

This commit fixes unused-private-field error in controlflow::KernelGenerator.

Signed-off-by: ragmani <[email protected]>
  • Loading branch information
ragmani authored May 12, 2020
1 parent f587996 commit 454cb37
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

#include "KernelGenerator.h"

#include <util/Utils.h>

namespace onert
{
namespace backend
Expand All @@ -26,7 +28,9 @@ namespace controlflow
KernelGenerator::KernelGenerator(const ir::Operands &operand_ctx)
: _operand_ctx{operand_ctx}, _tensor_builder_set{nullptr}, _executor_map{nullptr}
{
// DO NOTHING
UNUSED_RELEASE(_operand_ctx);
UNUSED_RELEASE(_tensor_builder_set);
UNUSED_RELEASE(_executor_map);
}

void KernelGenerator::visit(const ir::OpSequence &)
Expand Down

0 comments on commit 454cb37

Please sign in to comment.