From: 박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 Date: Thu, 19 Jul 2018 05:41:41 +0000 (+0900) Subject: [nnkit] Fix inconsistent override in Caffe backend (#715) X-Git-Tag: nncc_backup~2382 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b9b1ec5902b52f15999355d28ab2dec1a776f6d;p=platform%2Fcore%2Fml%2Fnnfw.git [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 --- 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); }