Removed un needed inline specifier

This commit is contained in:
gabime 2023-09-17 02:13:36 +03:00
parent 98415979d2
commit b777497b0d

View File

@ -360,7 +360,7 @@ constexpr std::basic_string_view<T> to_string_view(std::basic_format_string<T, A
# endif # endif
#else // {fmt} version #else // {fmt} version
template<typename T, typename... Args> template<typename T, typename... Args>
constexpr inline fmt::basic_string_view<T> to_string_view(fmt::basic_format_string<T, Args...> fmt) noexcept constexpr fmt::basic_string_view<T> to_string_view(fmt::basic_format_string<T, Args...> fmt) noexcept
{ {
return fmt; return fmt;
} }