ADTF
Loading...
Searching...
No Matches
legacy_error_macros.h
Go to the documentation of this file.
1
15
16#ifndef LEGACY_ERROR_MACROS_H_
17#define LEGACY_ERROR_MACROS_H_
18
21
27#define RETURN_IF_FAILED(s) \
28 { \
29 const a_util::result::Result _errcode(s); \
30 if (!_errcode) { \
31 return (_errcode); \
32 } \
33 }
34
35#endif // LEGACY_ERROR_MACROS_H_