52,53c52,57
< std::map<std::string, ReportMsgInfo> reportMsgInfoMap;
< std::map<int, std::string> reportIdToMsgMap;
---
> std::map<std::string, ReportMsgInfo> &
> reportMsgInfoMap()
> {
> static std::map<std::string, ReportMsgInfo> m;
> return m;
> }
54a59,65
> std::map<int, std::string> &
> reportIdToMsgMap()
> {
> static std::map<int, std::string> m;
> return m;
> }
>