clang format

This commit is contained in:
Victor Zverovich
2019-03-21 20:51:37 -07:00
parent da0ea4161a
commit b7e6bf9671
2 changed files with 7 additions and 8 deletions

View File

@@ -674,12 +674,11 @@ template <typename Context> struct custom_value {
Context& ctx);
};
template <typename T, typename Context>
struct is_formattable {
template <typename T, typename Context> struct is_formattable {
enum {
value = !is_constructible<
typename Context::template formatter_type<T>::type,
internal::dummy_formatter_arg>::value
value =
!is_constructible<typename Context::template formatter_type<T>::type,
internal::dummy_formatter_arg>::value
};
};