From: Alexander Efimov/AI Tools Lab/./Samsung Electronics Date: Mon, 19 Aug 2019 17:36:31 +0000 (+0300) Subject: Add missing include guard (#6655) X-Git-Tag: accepted/tizen/unified/20190903.052428~322 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5db741cdb6d7bc29eb414be037c9e21d754e77c7;p=platform%2Fcore%2Fml%2Fnnfw.git Add missing include guard (#6655) Added missing include guard in onnx to mir converter Signed-off-by: Efimov Alexander --- diff --git a/compiler/mir-onnx-importer/ONNXOpRegistration.h b/compiler/mir-onnx-importer/ONNXOpRegistration.h index cdb0a78..f16a399 100644 --- a/compiler/mir-onnx-importer/ONNXOpRegistration.h +++ b/compiler/mir-onnx-importer/ONNXOpRegistration.h @@ -14,6 +14,9 @@ * limitations under the License. */ +#ifndef __ONNX_OP_REGISTRATION_H__ +#define __ONNX_OP_REGISTRATION_H__ + #include "ONNXNodeConverterRegistry.h" #include "Op/Add.h" @@ -74,3 +77,5 @@ inline void registerSupportedOps() } } // namespace mir_onnx + +#endif // __ONNX_OP_REGISTRATION_H__