From 409c1680e63556c09760bf58535e3cc4fa27e011 Mon Sep 17 00:00:00 2001 From: zhaodezan Date: Wed, 17 Mar 2021 11:37:32 +0800 Subject: [PATCH] fix include common file --- mindspore/lite/include/model.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mindspore/lite/include/model.h b/mindspore/lite/include/model.h index de234a4107..6fa57be574 100644 --- a/mindspore/lite/include/model.h +++ b/mindspore/lite/include/model.h @@ -17,13 +17,12 @@ #define MINDSPORE_LITE_INCLUDE_MODEL_H_ #include #include "include/lite_utils.h" -#include "src/common/utils.h" namespace mindspore::lite { struct MS_API Model { struct Node { String name_; - NodeType node_type_; + int node_type_; const void *primitive_; Uint32Vector input_indices_; Uint32Vector output_indices_;