diff --git a/ngraph/core/include/ngraph/node.hpp b/ngraph/core/include/ngraph/node.hpp index a5080af6ef9021..f72d5ec13c141d 100644 --- a/ngraph/core/include/ngraph/node.hpp +++ b/ngraph/core/include/ngraph/node.hpp @@ -37,8 +37,7 @@ #include "ngraph/type.hpp" #include "ngraph/variant.hpp" -namespace ngraph -{ +namespace ngraph { template class Input; @@ -50,8 +49,7 @@ namespace ngraph class Function; - namespace runtime - { + namespace runtime { class HostTensor; } using HostTensor = runtime::HostTensor; @@ -123,8 +121,7 @@ namespace ngraph /// Nodes are the backbone of the graph of Value dataflow. Every node has /// zero or more nodes as arguments and one value, which is either a tensor /// or a (possibly empty) tuple of values. - class NGRAPH_API Node : public std::enable_shared_from_this - { + class NGRAPH_API Node : public std::enable_shared_from_this { // For access to m_outputs. friend class descriptor::Input;