From: 김수진/동작제어Lab(SR)/Engineer/삼성전자 Date: Wed, 12 Dec 2018 10:13:08 +0000 (+0900) Subject: [neurun] Change ifdef guard in Convert.h (#3990) X-Git-Tag: 0.3~113 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e01d3f8cae669ae4739b86b94693f8574403f682;p=platform%2Fcore%2Fml%2Fnnfw.git [neurun] Change ifdef guard in Convert.h (#3990) This commit changes ifdef guard in `Convert.h` to correct. Signed-off-by: sjsujinkim --- 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__