| 243 | /// Return an error status when a container's capacity would exceed its limits |
| 244 | template <typename... Args> |
| 245 | static Status CapacityError(Args&&... args) { |
| 246 | return Status::FromArgs(StatusCode::CapacityError, std::forward<Args>(args)...); |
| 247 | } |
| 248 | |
| 249 | /// Return an error status when some IO-related operation failed |
| 250 | template <typename... Args> |
no test coverage detected