From 34257bfe11c57c51ef0a1c9c5fe98712a4d100a8 Mon Sep 17 00:00:00 2001 From: Jiyoung Giuliana Yun Date: Wed, 21 Aug 2024 10:07:29 +0900 Subject: [PATCH] [onert] Add ir namespace to checkpoint header file (#13722) This commit adds the missing ir namespace to checkpoint header file. ONE-DCO-1.0-Signed-off-by: Jiyoung Yun --- runtime/onert/core/include/ir/train/Checkpoint.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/onert/core/include/ir/train/Checkpoint.h b/runtime/onert/core/include/ir/train/Checkpoint.h index d62f9d69b5e..8edc8a0aad5 100644 --- a/runtime/onert/core/include/ir/train/Checkpoint.h +++ b/runtime/onert/core/include/ir/train/Checkpoint.h @@ -19,6 +19,8 @@ namespace onert { +namespace ir +{ namespace train { namespace checkpoint @@ -46,6 +48,7 @@ constexpr uint8_t SCHEMA_VERSION = 1; } // namespace checkpoint } // namespace train +} // namespace ir } // namespace onert #endif // __ONERT_IR_TRAIN_CHECKPOINT_H__