Refactoring: remove unneeded typedef from DetectionOutputAttrs struct. (#1231)

This commit is contained in:
jdanieck
2020-07-08 10:15:15 +02:00
committed by GitHub
parent 71d41a992f
commit 8ff7e3381d

View File

@@ -22,7 +22,7 @@ namespace ngraph
{
namespace op
{
typedef struct DetectionOutputAttrs_
struct DetectionOutputAttrs
{
int num_classes;
int background_label_id = 0;
@@ -40,7 +40,7 @@ namespace ngraph
size_t input_height = 1;
size_t input_width = 1;
float objectness_score = 0;
} DetectionOutputAttrs;
};
namespace v0
{