| 40 | |
| 41 | template <typename T> |
| 42 | void SetErrorCode(ErrorCode code, T& rsp) { |
| 43 | rsp.set_code(static_cast<uint32_t>(code)); |
| 44 | rsp.set_msg(std::string(kErrorInfoArray[static_cast<uint32_t>(code)])); |
| 45 | } |
| 46 | |
| 47 | aimrt::runtime::core::logger::LoggerManager* logger_manager_ptr_ = nullptr; |
| 48 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected