[coco] Correct copy & move constructor (#1316)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Tue, 4 Sep 2018 04:55:50 +0000 (13:55 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Tue, 4 Sep 2018 04:55:50 +0000 (13:55 +0900)
This commit fixes copy&paste error in MaxPool2D class declaration.

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

index b319348..974c259 100644 (file)
@@ -16,8 +16,8 @@ public:
   explicit MaxPool2D(const PtrLink<Op, Instr> *);
 
 public:
-  MaxPool2D(const ReLU &) = delete;
-  MaxPool2D(ReLU &&) = delete;
+  MaxPool2D(const MaxPool2D &) = delete;
+  MaxPool2D(MaxPool2D &&) = delete;
 
 public:
   std::set<Object *> uses(void) const override;