Skip to content

Commit ef8435a

Browse files
committed
Format source code to suit clang-format-12
Format sigc++/adaptors/track_obj.h.
1 parent 6fb6f9d commit ef8435a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sigc++/adaptors/track_obj.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ template<typename T_functor, typename T_obj1, typename... T_objs>
162162
inline decltype(auto)
163163
track_object(const T_functor& func, const T_obj1& obj1, const T_objs&... objs)
164164
{
165-
static_assert(std::min<bool>({std::is_base_of<sigc::trackable, T_obj1>::value,
166-
std::is_base_of<sigc::trackable, T_objs>::value...}),
165+
static_assert(std::min<bool>({ std::is_base_of<sigc::trackable, T_obj1>::value,
166+
std::is_base_of<sigc::trackable, T_objs>::value... }),
167167
"Each trackable object must be derived from sigc::trackable.");
168168

169169
return track_obj_functor<T_functor, T_obj1, T_objs...>(func, obj1, objs...);

0 commit comments

Comments
 (0)