Apply clang-format

This commit is contained in:
Victor Zverovich 2020-06-25 07:14:55 -07:00
parent d130ee070f
commit 79c4b6bd70
2 changed files with 9 additions and 8 deletions

View File

@ -573,7 +573,8 @@ auto compile(const Char (&format_str)[N])
// DEPRECATED! use FMT_COMPILE instead.
template <typename... Args>
FMT_DEPRECATED auto compile(const Args&... args) -> decltype(detail::compile(args...)) {
FMT_DEPRECATED auto compile(const Args&... args)
-> decltype(detail::compile(args...)) {
return detail::compile(args...);
}