Skip to content

Commit 7c39cd8

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ab4677a commit 7c39cd8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

include/eigenpy/variant.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ struct VariantVisitorType {};
2626

2727
/// Allow to get all alternatives in a boost::mpl vector
2828
template <typename Variant>
29-
struct VariantAlternatives{};
29+
struct VariantAlternatives {};
3030

3131
#ifdef EIGENPY_WITH_CXX17_SUPPORT
3232

@@ -43,8 +43,8 @@ struct VariantVisitorType<ResultType, std::variant<Alternatives...> > {
4343
}
4444
};
4545

46-
template<typename... Alternatives>
47-
struct VariantAlternatives<std::variant<Alternatives...>>{
46+
template <typename... Alternatives>
47+
struct VariantAlternatives<std::variant<Alternatives...> > {
4848
typedef boost::mpl::vector<Alternatives...> types;
4949
};
5050

@@ -63,8 +63,8 @@ struct VariantVisitorType<ResultType, boost::variant<Alternatives...> >
6363
}
6464
};
6565

66-
template<typename... Alternatives>
67-
struct VariantAlternatives<boost::variant<Alternatives...>>{
66+
template <typename... Alternatives>
67+
struct VariantAlternatives<boost::variant<Alternatives...> > {
6868
typedef typename boost::variant<Alternatives...>::types types;
6969
};
7070

0 commit comments

Comments
 (0)