Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IE][BUILD] Fix C5208 warning under Windows #2628

Merged
merged 1 commit into from
Oct 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
namespace ngraph {
namespace op {

typedef struct {
struct InterpolateIEAttrs {
int height = -1;
int width = -1;
float zoom_factor = 0;
Expand All @@ -26,7 +26,7 @@ typedef struct {
std::string mode = "";
int pad_beg = 0;
int pad_end = 0;
} InterpolateIEAttrs;
};

class TRANSFORMATIONS_API Interp : public Op {
public:
Expand All @@ -45,11 +45,11 @@ class TRANSFORMATIONS_API Interp : public Op {
InterpolateIEAttrs m_attrs;
};

typedef struct {
struct ResampleIEAttrs {
bool antialias = true;
int64_t factor = 0;
std::string mode = "";
} ResampleIEAttrs;
};

class TRANSFORMATIONS_API ResampleV2 : public Op {
public:
Expand Down