From 4679646fb5ff97684ad2c1311d303ae0baa54b7f Mon Sep 17 00:00:00 2001 From: lujiale Date: Sat, 31 Oct 2020 18:10:17 +0800 Subject: [PATCH] update src/common/graph/utils/mem_utils.h. --- src/common/graph/utils/mem_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/graph/utils/mem_utils.h b/src/common/graph/utils/mem_utils.h index 7e8dd9fd..7930ca0b 100644 --- a/src/common/graph/utils/mem_utils.h +++ b/src/common/graph/utils/mem_utils.h @@ -27,6 +27,6 @@ static inline std::shared_ptr<_Tp> MakeShared(_Args &&... __args) { std::shared_ptr<_Tp> ret(new (std::nothrow) _Tp_nc(std::forward<_Args>(__args)...)); return ret; } -} +} // namespace ge #endif // COMMON_GRAPH_UTILS_MEM_UTILS_H_