| 48 | } |
| 49 | |
| 50 | static inline void setError(const char *message) { |
| 51 | if(!Status::message) { |
| 52 | Status::message = new char[strlen(message) + 1]; |
| 53 | if(Status::message) strcpy(Status::message, message); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | private: |
| 58 |
nothing calls this directly
no outgoing calls
no test coverage detected