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 71cf8e2 commit 2436f3dCopy full SHA for 2436f3d
parameter_traits/include/parameter_traits/parameter_traits.hpp
@@ -43,8 +43,8 @@ template <typename... Args>
43
[[deprecated(
44
"When returning tl::expected<void, std::string> you can call fmt::format "
45
"directly.")]] auto
46
-ERROR(const std::string& format,
47
- Args... args) -> tl::expected<void, std::string> {
+ERROR(const std::string& format, Args... args)
+ -> tl::expected<void, std::string> {
48
return tl::make_unexpected(fmt::format(format, args...));
49
}
50
0 commit comments