Browse Source

update src/common/graph/utils/mem_utils.h.

pull/194/head
lujiale Gitee 4 years ago
parent
commit
995cfcac25
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/common/graph/utils/mem_utils.h

+ 1
- 1
src/common/graph/utils/mem_utils.h View File

@@ -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)...)); std::shared_ptr<_Tp> ret(new (std::nothrow) _Tp_nc(std::forward<_Args>(__args)...));
return ret; return ret;
} }
} // namespace ge
} // namespace ge


#endif // COMMON_GRAPH_UTILS_MEM_UTILS_H_ #endif // COMMON_GRAPH_UTILS_MEM_UTILS_H_

Loading…
Cancel
Save