File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ struct VariantVisitorType {};
2626
2727// / Allow to get all alternatives in a boost::mpl vector
2828template <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
You can’t perform that action at this time.
0 commit comments