Commit 6f2dd30e authored by Charles Milette's avatar Charles Milette Committed by Victor Zverovich

Simplify udl_formatter return type

parent 431d0f85
...@@ -3469,8 +3469,7 @@ template <typename Char> struct udl_formatter { ...@@ -3469,8 +3469,7 @@ template <typename Char> struct udl_formatter {
basic_string_view<Char> str; basic_string_view<Char> str;
template <typename... Args> template <typename... Args>
auto operator()(Args&&... args) const std::basic_string<Char> operator()(Args&&... args) const {
-> decltype(format(str, std::forward<Args>(args)...)) {
return format(str, std::forward<Args>(args)...); return format(str, std::forward<Args>(args)...);
} }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment