Skip to content

Commit f6bfb55

Browse files
committed
fix clang-format
1 parent bbe7ba2 commit f6bfb55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/iceberg/result.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ using Status = Result<void>;
6666
/// \brief Macro to define error creation functions
6767
#define DEFINE_ERROR_FUNCTION(name) \
6868
template <typename... Args> \
69-
inline auto name(const std::format_string<Args...> fmt, \
70-
Args&&... args) -> unexpected<Error> { \
69+
inline auto name(const std::format_string<Args...> fmt, Args&&... args) \
70+
-> unexpected<Error> { \
7171
return unexpected<Error>( \
7272
{ErrorKind::k##name, std::format(fmt, std::forward<Args>(args)...)}); \
7373
}

0 commit comments

Comments
 (0)