From a23602c0748f222075594655d2a9dc5c7c7bd2c6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9C=A4=ED=98=84=EC=8B=9D/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Principal=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Thu, 31 May 2018 11:42:02 +0900 Subject: [PATCH] Modify #ifndef macro of SimpleArithmeticAdditionLayer.h (#1458) from `#ifndef __SIMPLE_ARITHMETIC_LAYER_H__` to `#ifndef __SIMPLE_ARITHMETIC_ADDITION_LAYER_H__` because we may need more arithmetic layers. Signed-off-by: Hyun Sik Yoon --- .../src/internal/layers/SimpleArithmeticAdditionLayer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtimes/pure_arm_compute/src/internal/layers/SimpleArithmeticAdditionLayer.h b/runtimes/pure_arm_compute/src/internal/layers/SimpleArithmeticAdditionLayer.h index aefa50d..7fd5b00 100644 --- a/runtimes/pure_arm_compute/src/internal/layers/SimpleArithmeticAdditionLayer.h +++ b/runtimes/pure_arm_compute/src/internal/layers/SimpleArithmeticAdditionLayer.h @@ -1,5 +1,5 @@ -#ifndef __SIMPLE_ARITHMETIC_LAYER_H__ -#define __SIMPLE_ARITHMETIC_LAYER_H__ +#ifndef __SIMPLE_ARITHMETIC_ADDITION_LAYER_H__ +#define __SIMPLE_ARITHMETIC_ADDITION_LAYER_H__ #include @@ -44,4 +44,4 @@ private: ::arm_compute::ICLTensor *_out; }; -#endif // __SIMPLE_ARITHMETIC_LAYER_H__ +#endif // __SIMPLE_ARITHMETIC_ADDITION_LAYER_H__ -- 2.7.4