From 7dc1ee5db7b63c9aebed3363d41a76d781d735f4 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: Tue, 14 Aug 2018 14:04:13 +0900 Subject: [PATCH] [coco] Fix incorrect ifdef guard (#994) This commit fixes incorrect ifdef guard of FeatureObjectInfo.forward.h Signed-off-by: Jonghyun Park --- contrib/coco/core/include/coco/IR/FeatureObjectInfo.forward.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/coco/core/include/coco/IR/FeatureObjectInfo.forward.h b/contrib/coco/core/include/coco/IR/FeatureObjectInfo.forward.h index 84456d2..b2f81b1 100644 --- a/contrib/coco/core/include/coco/IR/FeatureObjectInfo.forward.h +++ b/contrib/coco/core/include/coco/IR/FeatureObjectInfo.forward.h @@ -1,5 +1,5 @@ -#ifndef __COCO_IR_FEATURE_OBJECT_INFO_FORWARD_INFO_H__ -#define __COCO_IR_FEATURE_OBJECT_INFO_FORWARD_INFO_H__ +#ifndef __COCO_IR_FEATURE_OBJECT_INFO_FORWARD_H__ +#define __COCO_IR_FEATURE_OBJECT_INFO_FORWARD_H__ namespace coco { @@ -8,4 +8,4 @@ class FeatureObjectInfo; } // namespace coco -#endif // __COCO_IR_FEATURE_OBJECT_INFO_FORWARD_INFO_H__ +#endif // __COCO_IR_FEATURE_OBJECT_INFO_FORWARD_H__ -- 2.7.4