From e01d3f8cae669ae4739b86b94693f8574403f682 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EA=B9=80=EC=88=98=EC=A7=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Engineer/=EC=82=BC=EC=84=B1=EC=A0=84?= =?utf8?q?=EC=9E=90?= Date: Wed, 12 Dec 2018 19:13:08 +0900 Subject: [PATCH] [neurun] Change ifdef guard in Convert.h (#3990) This commit changes ifdef guard in `Convert.h` to correct. Signed-off-by: sjsujinkim --- runtimes/neurun/src/backend/acl_cl/Convert.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtimes/neurun/src/backend/acl_cl/Convert.h b/runtimes/neurun/src/backend/acl_cl/Convert.h index 706e67c..a96bb0d 100644 --- a/runtimes/neurun/src/backend/acl_cl/Convert.h +++ b/runtimes/neurun/src/backend/acl_cl/Convert.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef __INTERNAL_CONVERT_H__ -#define __INTERNAL_CONVERT_H__ +#ifndef __NEURUN_BACKEND_ACL_CL_CONVERT_H__ +#define __NEURUN_BACKEND_ACL_CL_CONVERT_H__ #include #include @@ -44,4 +44,4 @@ namespace acl_cl } // namespace backend } // namespace neurun -#endif // __INTERNAL_CONVERT_H__ +#endif // __NEURUN_BACKEND_ACL_CL_CONVERT_H__ -- 2.7.4