Skip to content
Snippets Groups Projects
Commit 7c39cd8b authored by pre-commit-ci[bot]'s avatar pre-commit-ci[bot]
Browse files

[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
parent ab4677ad
No related branches found
No related tags found
No related merge requests found
Pipeline #35869 passed with warnings
......@@ -26,7 +26,7 @@ struct VariantVisitorType {};
/// Allow to get all alternatives in a boost::mpl vector
template <typename Variant>
struct VariantAlternatives{};
struct VariantAlternatives {};
#ifdef EIGENPY_WITH_CXX17_SUPPORT
......@@ -43,8 +43,8 @@ struct VariantVisitorType<ResultType, std::variant<Alternatives...> > {
}
};
template<typename... Alternatives>
struct VariantAlternatives<std::variant<Alternatives...>>{
template <typename... Alternatives>
struct VariantAlternatives<std::variant<Alternatives...> > {
typedef boost::mpl::vector<Alternatives...> types;
};
......@@ -63,8 +63,8 @@ struct VariantVisitorType<ResultType, boost::variant<Alternatives...> >
}
};
template<typename... Alternatives>
struct VariantAlternatives<boost::variant<Alternatives...>>{
template <typename... Alternatives>
struct VariantAlternatives<boost::variant<Alternatives...> > {
typedef typename boost::variant<Alternatives...>::types types;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment