From c10cd389b4cc170b0591df71780c89488cd8a2cb 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: Mon, 1 Oct 2018 10:14:18 +0900 Subject: [PATCH] [coco] Remove dangling info method (#1679) Object::info has no implementation, and no code invokes this method. Signed-off-by: Jonghyun Park --- contrib/coco/core/include/coco/IR/Object.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/contrib/coco/core/include/coco/IR/Object.h b/contrib/coco/core/include/coco/IR/Object.h index 6939a13..f000d96 100644 --- a/contrib/coco/core/include/coco/IR/Object.h +++ b/contrib/coco/core/include/coco/IR/Object.h @@ -73,9 +73,6 @@ public: virtual KernelObject *asKernel(void) { return nullptr; } virtual const KernelObject *asKernel(void) const { return nullptr; } -private: - ObjectInfo *info(void) const; - public: Def *def(void) const; const UseSet *uses(void) const; -- 2.7.4