\brief Return the StatusCode value attached to this status.
| 341 | |
| 342 | /// \brief Return the StatusCode value attached to this status. |
| 343 | constexpr StatusCode code() const { return ok() ? StatusCode::OK : state_->code; } |
| 344 | |
| 345 | /// \brief Return the specific error message attached to this status. |
| 346 | const std::string& message() const; |
no test coverage detected