From: 박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 Date: Mon, 10 Sep 2018 03:51:52 +0000 (+0900) Subject: [coco] Remove deprecated Bag::object method (#1422) X-Git-Tag: nncc_backup~1878 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aa09e5396d4d9cc8ddb4665bd1870d5ef16fda7e;p=platform%2Fcore%2Fml%2Fnnfw.git [coco] Remove deprecated Bag::object method (#1422) This commit removes deprecated Bag::object method declaration and implementation. Signed-off-by: Jonghyun Park --- diff --git a/contrib/coco/core/include/coco/IR/Bag.h b/contrib/coco/core/include/coco/IR/Bag.h index 29f085f..d3c81d9 100644 --- a/contrib/coco/core/include/coco/IR/Bag.h +++ b/contrib/coco/core/include/coco/IR/Bag.h @@ -51,10 +51,6 @@ public: uint32_t size(void) const; public: - // NOTE This method is deprecated. Use 'deps' instead - const ObjectSet *object(void) const; - -public: bool isInput(void) const; bool isOutput(void) const; diff --git a/contrib/coco/core/src/IR/Bag.cpp b/contrib/coco/core/src/IR/Bag.cpp index ba8a9fd..84188f4 100644 --- a/contrib/coco/core/src/IR/Bag.cpp +++ b/contrib/coco/core/src/IR/Bag.cpp @@ -20,8 +20,6 @@ Bag::~Bag() uint32_t Bag::size(void) const { return _info->size(); } -const ObjectSet *Bag::object(void) const { return _info->object(); } - bool Bag::isInput(void) const { return _info->mask()->masked(BagMask::Input); } bool Bag::isOutput(void) const { return _info->mask()->masked(BagMask::Output); }