Add missing include guard (#6655)
authorAlexander Efimov/AI Tools Lab/./Samsung Electronics <a.efimov@samsung.com>
Mon, 19 Aug 2019 17:36:31 +0000 (20:36 +0300)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Mon, 19 Aug 2019 17:36:31 +0000 (20:36 +0300)
Added missing include guard in onnx to mir converter

Signed-off-by: Efimov Alexander <a.efimov@samsung.com>
compiler/mir-onnx-importer/ONNXOpRegistration.h

index cdb0a78..f16a399 100644 (file)
@@ -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__