Commit 4b0445d1 authored by Fabian Boemer's avatar Fabian Boemer Committed by Scott Cyphers

Fix compiler error GCC with 7.1 (#2155)

parent 73da681a
...@@ -63,7 +63,7 @@ namespace ngraph ...@@ -63,7 +63,7 @@ namespace ngraph
/// \brief Constructs a static PartialShape with zero rank (the shape of a scalar). /// \brief Constructs a static PartialShape with zero rank (the shape of a scalar).
PartialShape() PartialShape()
: PartialShape({}) : PartialShape(std::initializer_list<Dimension>{})
{ {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment