From 75f22ab11cbf4cdb0aa379db45c8234d0f96d0af 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, 6 Sep 2018 13:38:49 +0900 Subject: [PATCH] [coco] Remove deprecated Shuffle::at (#1375) This commit removes deprecated Shuffle::at method. Signed-off-by: Jonghyun Park --- contrib/coco/core/include/coco/IR/Shuffle.h | 2 -- 1 file changed, 2 deletions(-) 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); -- 2.7.4