From ee791582fedbc29c01cdb303a682fde858c6a055 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=EC=83=81=EA=B7=9C/On-Device=20Lab=28SR=29/Princip?= =?utf8?q?al=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Thu, 18 Jul 2019 18:29:01 +0900 Subject: [PATCH] Fix inclusion guard for Subgraphs (#5696) SubgraphContext was renamed. Thus, inclusion guard is renamed. Signed-off-by: Sanggyu Lee --- runtimes/neurun/core/include/model/Subgraphs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtimes/neurun/core/include/model/Subgraphs.h b/runtimes/neurun/core/include/model/Subgraphs.h index 1a73c33..f1e4ffb 100644 --- a/runtimes/neurun/core/include/model/Subgraphs.h +++ b/runtimes/neurun/core/include/model/Subgraphs.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef __NEURUN_MODEL_SUBGRAPH_CONTEXT_H__ -#define __NEURUN_MODEL_SUBGRAPH_CONTEXT_H__ +#ifndef __NEURUN_MODEL_SUBGRAPHS_H__ +#define __NEURUN_MODEL_SUBGRAPHS_H__ #include "model/Index.h" #include "model/Subgraph.h" @@ -69,4 +69,4 @@ private: } // namespace model } // namespace neurun -#endif // __NEURUN_MODEL_SUBGRAPH_CONTEXT_H__ +#endif // __NEURUN_MODEL_SUBGRAPHS_H__ -- 2.7.4