From: 박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 Date: Thu, 6 Sep 2018 04:38:49 +0000 (+0900) Subject: [coco] Remove deprecated Shuffle::at (#1375) X-Git-Tag: nncc_backup~1910 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=75f22ab11cbf4cdb0aa379db45c8234d0f96d0af;p=platform%2Fcore%2Fml%2Fnnfw.git [coco] Remove deprecated Shuffle::at (#1375) This commit removes deprecated Shuffle::at method. Signed-off-by: Jonghyun Park --- diff --git a/contrib/coco/core/include/coco/IR/Shuffle.h b/contrib/coco/core/include/coco/IR/Shuffle.h index 1973d27..00908c0 100644 --- a/contrib/coco/core/include/coco/IR/Shuffle.h +++ b/contrib/coco/core/include/coco/IR/Shuffle.h @@ -47,8 +47,6 @@ public: public: const ElemID &at(uint32_t n) const { return _content.at(n); } - // NOTE This method is deprecated. Pleaes do NOT use this anymore - ElemID &at(uint32_t n) { return _content.at(n); } public: void insert(const ElemID &from, const ElemID &into);