diff options
Diffstat (limited to 'AK')
-rw-r--r-- | AK/Format.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AK/Format.h b/AK/Format.h index 2054d30768..3193c79220 100644 --- a/AK/Format.h +++ b/AK/Format.h @@ -432,10 +432,10 @@ void dmesgln(CheckedFormatString<Parameters...>&& fmt, const Parameters&... para #endif template<typename T, typename = void> -constexpr bool HasFormatter = true; +inline constexpr bool HasFormatter = true; template<typename T> -constexpr bool HasFormatter<T, typename Formatter<T>::__no_formatter_defined> = false; +inline constexpr bool HasFormatter<T, typename Formatter<T>::__no_formatter_defined> = false; template<typename T> class FormatIfSupported { |