[coco.core] Remove unused operator overloading (#2991)
author박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Wed, 6 Feb 2019 23:58:58 +0000 (08:58 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Wed, 6 Feb 2019 23:58:58 +0000 (08:58 +0900)
This commit removes unused operator overloading in Shuffle.cpp.

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

index 6f8a9d2..f8007dd 100644 (file)
 
 #include "coco/IR/Instrs.h"
 
-namespace
-{
-std::set<coco::Bag *> &operator+=(std::set<coco::Bag *> &res, coco::Bag *b)
-{
-  if (b != nullptr)
-  {
-    res.insert(b);
-  }
-  return res;
-}
-} // namespace
-
 namespace coco
 {