From 9d7dc113a939c50bd106755faea32d3fd446fdb4 Mon Sep 17 00:00:00 2001 From: Ilya Churaev Date: Tue, 8 Jun 2021 12:18:59 +0300 Subject: [PATCH] Fixed constant op --- ngraph/core/include/ngraph/op/constant.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ngraph/core/include/ngraph/op/constant.hpp b/ngraph/core/include/ngraph/op/constant.hpp index 66a452bc339676..41e990b35abfa1 100644 --- a/ngraph/core/include/ngraph/op/constant.hpp +++ b/ngraph/core/include/ngraph/op/constant.hpp @@ -176,6 +176,8 @@ namespace ngraph // Don't constant fold a constant; it would make a copy bool constant_fold(OutputVector& outputs, const OutputVector& inputs) override { + (void)outputs; + (void)inputs; return false; }