[neurun] Change ifdef guard in Convert.h (#3990)
author김수진/동작제어Lab(SR)/Engineer/삼성전자 <sjsujin.kim@samsung.com>
Wed, 12 Dec 2018 10:13:08 +0000 (19:13 +0900)
committer이춘석/동작제어Lab(SR)/Staff Engineer/삼성전자 <chunseok.lee@samsung.com>
Wed, 12 Dec 2018 10:13:08 +0000 (19:13 +0900)
This commit changes ifdef guard in `Convert.h` to correct.

Signed-off-by: sjsujinkim <sjsujin.kim@samsung.com>
runtimes/neurun/src/backend/acl_cl/Convert.h

index 706e67c..a96bb0d 100644 (file)
@@ -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 <arm_compute/core/TensorInfo.h>
 #include <arm_compute/core/SubTensorInfo.h>
@@ -44,4 +44,4 @@ namespace acl_cl
 } // namespace backend
 } // namespace neurun
 
-#endif // __INTERNAL_CONVERT_H__
+#endif // __NEURUN_BACKEND_ACL_CL_CONVERT_H__