| 92 | |
| 93 | public: |
| 94 | ErrorInfo():error_code_(ErrorCode::OK),error_msg_(""){}; |
| 95 | ErrorInfo(ErrorCode error_code, const std::string &error_msg=""):error_code_(error_code),error_msg_(error_msg){}; |
| 96 | |
| 97 | ErrorInfo& operator= ( const ErrorInfo& error_info ) { |
nothing calls this directly
no outgoing calls
no test coverage detected