| 78 | } |
| 79 | |
| 80 | bool GetError(){ |
| 81 | std::lock_guard<std::mutex> lck (mtxerror); |
| 82 | bool e = error; |
| 83 | return e; |
| 84 | } |
| 85 | |
| 86 | std::string GetErrorMessage(){ |
| 87 | std::lock_guard<std::mutex> lck (mtxerror); |
nothing calls this directly
no outgoing calls
no test coverage detected