| 43 | static inline const char *getError() { return(message); } |
| 44 | |
| 45 | static inline void clearError() { |
| 46 | if(Status::message) delete Status::message; |
| 47 | Status::message = nullptr; |
| 48 | } |
| 49 | |
| 50 | static inline void setError(const char *message) { |
| 51 | if(!Status::message) { |
nothing calls this directly
no outgoing calls
no test coverage detected