From 2f767581d18f2dd5ad49188868d1045af481050d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ivan=20Vagin/AI=20Tools=20Lab=20/SRR/Engineer/=EC=82=BC?= =?utf8?q?=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Tue, 11 Dec 2018 02:08:48 +0300 Subject: [PATCH] [enco] Fixed build error (#2597) Fixed error: "no template named 'function' in namespace 'std'" Signed-off-by: Ivan Vagin --- contrib/enco/frontend/caffe/src/Layer/Eltwise.cpp | 1 + contrib/enco/frontend/caffe/src/Layer/Pooling.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/contrib/enco/frontend/caffe/src/Layer/Eltwise.cpp b/contrib/enco/frontend/caffe/src/Layer/Eltwise.cpp index 4696eac..6a5d4f1 100644 --- a/contrib/enco/frontend/caffe/src/Layer/Eltwise.cpp +++ b/contrib/enco/frontend/caffe/src/Layer/Eltwise.cpp @@ -22,6 +22,7 @@ #include #include +#include using namespace nncc::core::ADT; using namespace morph::caffe; diff --git a/contrib/enco/frontend/caffe/src/Layer/Pooling.cpp b/contrib/enco/frontend/caffe/src/Layer/Pooling.cpp index 5b4e3cf..7241cb0 100644 --- a/contrib/enco/frontend/caffe/src/Layer/Pooling.cpp +++ b/contrib/enco/frontend/caffe/src/Layer/Pooling.cpp @@ -23,6 +23,7 @@ #include #include +#include using namespace nncc::core::ADT; using namespace morph::caffe; -- 2.7.4