From 55123bed1e3c4426fdeaf87904cd6e388255f5e5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Senior=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Fri, 20 Apr 2018 10:20:58 +0900 Subject: [PATCH] [caffegen] Include 'InputLayer.h' (#106) LayerAnalysisPass.h uses 'InputLayer', but does not includes 'InputLayer.h' This commit updates 'LayerAnalysisPass.h', and introduces empty 'LayerAnalysisPass.cpp' to ensure that 'LayerAnalysisPass.h' is self-complete. Signed-off-by: Jonghyun Park --- contrib/caffegen/include/LayerAnalysisPass.h | 2 ++ contrib/caffegen/src/LayerAnalysisPass.cpp | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 contrib/caffegen/src/LayerAnalysisPass.cpp diff --git a/contrib/caffegen/include/LayerAnalysisPass.h b/contrib/caffegen/include/LayerAnalysisPass.h index ba28129..a3c282c 100644 --- a/contrib/caffegen/include/LayerAnalysisPass.h +++ b/contrib/caffegen/include/LayerAnalysisPass.h @@ -1,6 +1,8 @@ #ifndef __LAYER_ANALYSIS_PASS_H__ #define __LAYER_ANALYSIS_PASS_H__ +#include "InputLayer.h" + struct LayerAnalysisPass { virtual ~LayerAnalysisPass() = default; diff --git a/contrib/caffegen/src/LayerAnalysisPass.cpp b/contrib/caffegen/src/LayerAnalysisPass.cpp new file mode 100644 index 0000000..676222a --- /dev/null +++ b/contrib/caffegen/src/LayerAnalysisPass.cpp @@ -0,0 +1,3 @@ +#include "LayerAnalysisPass.h" + +// NOTE This file is introduced to ensure that 'LayerAnalyissPass.h' is self-complete. -- 2.7.4