From 1b9b1ec5902b52f15999355d28ab2dec1a776f6d 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/Staff=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Thu, 19 Jul 2018 14:41:41 +0900 Subject: [PATCH] [nnkit] Fix inconsistent override in Caffe backend (#715) This commit fixes inconsistent override tag in Caffe backend (reported by Clang 7.0). Signed-off-by: Jonghyun Park --- contrib/nnkit/backends/caffe/Module.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/nnkit/backends/caffe/Module.cpp b/contrib/nnkit/backends/caffe/Module.cpp index 0ca099f..f62cb65 100644 --- a/contrib/nnkit/backends/caffe/Module.cpp +++ b/contrib/nnkit/backends/caffe/Module.cpp @@ -55,7 +55,7 @@ public: return _net.blob_names().at(_net.input_blob_indices().at(n)); } - caffe::Blob *blob(uint32_t n) + caffe::Blob *blob(uint32_t n) override { return _net.input_blobs().at(n); } @@ -83,7 +83,7 @@ public: return _net.blob_names().at(_net.output_blob_indices().at(n)); } - caffe::Blob *blob(uint32_t n) + caffe::Blob *blob(uint32_t n) override { return _net.output_blobs().at(n); } -- 2.7.4