diff --git a/src/ngraph/op/relu.cpp b/src/ngraph/op/relu.cpp
index 3a9188da6740f698f12bd473c7ef4c4f760f884f..895a8a0283e57fd95c165977c4a2a8470c46ccea 100644
--- a/src/ngraph/op/relu.cpp
+++ b/src/ngraph/op/relu.cpp
@@ -24,7 +24,7 @@ const string op::Relu::type_name{"Relu"};
 const string op::ReluBackprop::type_name{"ReluBackprop"};
 
 op::Relu::Relu(shared_ptr<Node> arg)
-    : UnaryElementwiseArithmetic({arg})
+    : UnaryElementwiseArithmetic(arg)
 {
     constructor_validate_and_infer_types();
 }