Apply clang-format

This commit is contained in:
Martchus 2018-04-01 23:08:41 +02:00
parent 8bc3cf9615
commit 557856dc5c
1 changed files with 3 additions and 1 deletions

View File

@ -118,7 +118,9 @@ constexpr auto color(Color foreground, ColorContext context, TextAttribute displ
return std::make_tuple(foreground, context, displayAttribute);
}
template<typename TupleType, Traits::EnableIfAny<std::is_same<TupleType, std::tuple<Color, Color, TextAttribute>>, std::is_same<TupleType, std::tuple<Color, ColorContext, TextAttribute>>>...>
template <typename TupleType,
Traits::EnableIfAny<std::is_same<TupleType, std::tuple<Color, Color, TextAttribute>>,
std::is_same<TupleType, std::tuple<Color, ColorContext, TextAttribute>>>...>
inline std::ostream &operator<<(std::ostream &stream, TupleType displayAttribute)
{
setStyle(stream, std::get<0>(displayAttribute), std::get<1>(displayAttribute), std::get<2>(displayAttribute));