Go to the source code of this file.
#define ASSIGN_OR_RETURN |
( |
|
lhs, |
|
|
|
rexpr |
|
) |
| |
Value:#define ASSIGN_OR_RETURN_IMPL(status, lhs, rexpr)
#define STATUS_MACROS_CONCAT_NAME(x, y)
Definition at line 72 of file status_macros.h.
#define ASSIGN_OR_RETURN_IMPL |
( |
|
status, |
|
|
|
lhs, |
|
|
|
rexpr |
|
) |
| |
Value: if (!status.
ok())
return status;
Status DoAssignOrReturn(T &lhs, StatusOr< T > result)
Definition at line 59 of file status_macros.h.
#define RETURN_IF_ERROR |
( |
|
expr | ) |
|
Value:do { \
\
const ::util::Status _status = (expr); \
if (!_status.ok()) return _status; \
} while (0)
Definition at line 40 of file status_macros.h.
#define STATUS_MACROS_CONCAT_NAME_INNER |
( |
|
x, |
|
|
|
y |
|
) |
| x##y |