Commit 95c60166 authored by VINOD KUMAR DEVARAMPATI's avatar VINOD KUMAR DEVARAMPATI Committed by Adam Procter

Enums should be moved to public to access (#1844)

* Enums should be moved to public to access

* fix style check
parent 6db5620f
...@@ -28,6 +28,7 @@ namespace ngraph ...@@ -28,6 +28,7 @@ namespace ngraph
class ngraph::pass::ConstantFolding : public ngraph::pass::GraphRewrite class ngraph::pass::ConstantFolding : public ngraph::pass::GraphRewrite
{ {
public:
enum class CFTransformations enum class CFTransformations
{ {
RESHAPE, RESHAPE,
...@@ -39,7 +40,6 @@ class ngraph::pass::ConstantFolding : public ngraph::pass::GraphRewrite ...@@ -39,7 +40,6 @@ class ngraph::pass::ConstantFolding : public ngraph::pass::GraphRewrite
QUANTIZE QUANTIZE
}; };
public:
ConstantFolding() ConstantFolding()
: GraphRewrite() : GraphRewrite()
{ {
......
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