Creates a status from a base_status and a loc.
Declared in <absl/status/status.h>
Status(
Status const& base_status,
absl::SourceLocation loc);
The loc will be appended to the location chain of the new status, iff the base_status is not ok and has non-empty msg.
| Name | Description |
|---|---|
| base_status | The status to copy. |
| loc | The source location to append to the location chain. |