Skip to content

Commit

Permalink
Break code style
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyachur committed Aug 10, 2021
1 parent f53d2fc commit 71ee638
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions ngraph/core/include/ngraph/node.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@
#include "ngraph/type.hpp"
#include "ngraph/variant.hpp"

namespace ngraph
{
namespace ngraph {
template <typename NodeType>
class Input;

Expand All @@ -50,8 +49,7 @@ namespace ngraph

class Function;

namespace runtime
{
namespace runtime {
class HostTensor;
}
using HostTensor = runtime::HostTensor;
Expand Down Expand Up @@ -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<Node>
{
class NGRAPH_API Node : public std::enable_shared_from_this<Node> {
// For access to m_outputs.
friend class descriptor::Input;

Expand Down

0 comments on commit 71ee638

Please sign in to comment.