From 368a68facb53435134b614f6b19e304103bea468 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: Wed, 10 Oct 2018 11:11:33 +0900 Subject: [PATCH] [coco] Remove ObjectInfo.forward.h (#1791) ObjectInfo.h no longer exists, but ObjectInfo.forward.h is still in the code tree. This commit removes ObjectInfo.forward.h itself along with all of its references. Signed-off-by: Jonghyun Park --- contrib/coco/core/include/coco/IR/Def.h | 1 - contrib/coco/core/include/coco/IR/InstrManager.h | 1 - contrib/coco/core/include/coco/IR/Object.h | 1 - .../coco/core/include/coco/IR/ObjectInfo.forward.h | 27 ---------------------- contrib/coco/core/include/coco/IR/OpManager.h | 1 - contrib/coco/core/include/coco/IR/Use.h | 1 - 6 files changed, 32 deletions(-) delete mode 100644 contrib/coco/core/include/coco/IR/ObjectInfo.forward.h diff --git a/contrib/coco/core/include/coco/IR/Def.h b/contrib/coco/core/include/coco/IR/Def.h index d1c7af1..804b866 100644 --- a/contrib/coco/core/include/coco/IR/Def.h +++ b/contrib/coco/core/include/coco/IR/Def.h @@ -18,7 +18,6 @@ #define __COCO_IR_DEF_H__ #include "coco/IR/Object.h" -#include "coco/IR/ObjectInfo.forward.h" #include "coco/ADT/PtrLink.h" diff --git a/contrib/coco/core/include/coco/IR/InstrManager.h b/contrib/coco/core/include/coco/IR/InstrManager.h index f006faa..643e542 100644 --- a/contrib/coco/core/include/coco/IR/InstrManager.h +++ b/contrib/coco/core/include/coco/IR/InstrManager.h @@ -28,7 +28,6 @@ #include "coco/IR/Bag.h" #include "coco/IR/Object.forward.h" -#include "coco/IR/ObjectInfo.forward.h" #include "coco/IR/EntityBuilder.h" diff --git a/contrib/coco/core/include/coco/IR/Object.h b/contrib/coco/core/include/coco/IR/Object.h index dc47cf2..974c806 100644 --- a/contrib/coco/core/include/coco/IR/Object.h +++ b/contrib/coco/core/include/coco/IR/Object.h @@ -20,7 +20,6 @@ #include "coco/IR/Entity.h" #include "coco/IR/Bag.h" #include "coco/IR/Dep.h" -#include "coco/IR/ObjectInfo.forward.h" #include "coco/IR/Def.forward.h" #include "coco/IR/UseSet.h" diff --git a/contrib/coco/core/include/coco/IR/ObjectInfo.forward.h b/contrib/coco/core/include/coco/IR/ObjectInfo.forward.h deleted file mode 100644 index aaea8b0..0000000 --- a/contrib/coco/core/include/coco/IR/ObjectInfo.forward.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __COCO_IR_OBJECT_INFO_FORWARD_H__ -#define __COCO_IR_OBJECT_INFO_FORWARD_H__ - -namespace coco -{ - -class ObjectInfo; - -} // namespace coco - -#endif // __COCO_IR_OBJECT_INFO_FORWARD_H__ diff --git a/contrib/coco/core/include/coco/IR/OpManager.h b/contrib/coco/core/include/coco/IR/OpManager.h index 724221f..56f4a71 100644 --- a/contrib/coco/core/include/coco/IR/OpManager.h +++ b/contrib/coco/core/include/coco/IR/OpManager.h @@ -27,7 +27,6 @@ #include "coco/IR/Instr.forward.h" #include "coco/IR/Object.forward.h" -#include "coco/IR/ObjectInfo.forward.h" #include "coco/IR/EntityBuilder.h" diff --git a/contrib/coco/core/include/coco/IR/Use.h b/contrib/coco/core/include/coco/IR/Use.h index b837b89..16ce0fd 100644 --- a/contrib/coco/core/include/coco/IR/Use.h +++ b/contrib/coco/core/include/coco/IR/Use.h @@ -18,7 +18,6 @@ #define __COCO_IR_USE_H__ #include "coco/IR/Object.h" -#include "coco/IR/ObjectInfo.forward.h" #include "coco/ADT/PtrLink.h" -- 2.7.4