We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e57882 commit 7015c73Copy full SHA for 7015c73
src/iceberg/result.h
@@ -66,8 +66,8 @@ using Status = Result<void>;
66
/// \brief Macro to define error creation functions
67
#define DEFINE_ERROR_FUNCTION(name) \
68
template <typename... Args> \
69
- inline auto name(const std::format_string<Args...> fmt, \
70
- Args&&... args) -> unexpected<Error> { \
+ inline auto name(const std::format_string<Args...> fmt, Args&&... args) \
+ -> unexpected<Error> { \
71
return unexpected<Error>( \
72
{ErrorKind::k##name, std::format(fmt, std::forward<Args>(args)...)}); \
73
}
0 commit comments