File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ struct has_begin_end : private sfinae_base
5555 // typename
5656 template <typename C, typename LEFT = C::const_iterator (C::*)() const >
5757 static yes& f (typename std::enable_if<
58- std::is_same<decltype (static_cast <typename LEFT>(&C::begin)), typename C::const_iterator (C::*)() const >::value>::type*);
58+ std::is_same<decltype (static_cast <LEFT>(&C::begin)), typename C::const_iterator (C::*)() const >::value>::type*);
5959#else // _MSCV_VER
6060 template <typename C>
6161 static yes& f (typename std::enable_if<std::is_same<decltype (static_cast <typename C::const_iterator (C::*)() const >(&C::begin)),
@@ -68,7 +68,7 @@ struct has_begin_end : private sfinae_base
6868#ifdef _MSC_VER
6969 template <typename C, typename LEFT = C::const_iterator (C::*)() const >
7070 static yes& g (
71- typename std::enable_if<std::is_same<decltype (static_cast <typename LEFT>(&C::end)), typename C::const_iterator (C::*)() const >::value,
71+ typename std::enable_if<std::is_same<decltype (static_cast <LEFT>(&C::end)), typename C::const_iterator (C::*)() const >::value,
7272 void>::type*);
7373#else // _MSCV_VER
7474 template <typename C>
You can’t perform that action at this time.
0 commit comments