[coco] Remove deprecated Bag::object method (#1422)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Mon, 10 Sep 2018 03:51:52 +0000 (12:51 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Mon, 10 Sep 2018 03:51:52 +0000 (12:51 +0900)
This commit removes deprecated Bag::object method declaration and
implementation.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
contrib/coco/core/include/coco/IR/Bag.h
contrib/coco/core/src/IR/Bag.cpp

index 29f085f..d3c81d9 100644 (file)
@@ -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;
 
index ba8a9fd..84188f4 100644 (file)
@@ -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); }