mirror of
https://github.com/boostorg/typeof.git
synced 2025-07-29 20:37:28 +02:00
*** empty log message ***
[SVN r34215]
This commit is contained in:
@ -153,7 +153,12 @@ namespace boost
|
||||
typedef char(*type)[encode_type<T>::value];
|
||||
};
|
||||
|
||||
# if BOOST_WORKAROUND(BOOST_MSVC,>=1300)
|
||||
# ifdef BOOST_NO_SFINAE
|
||||
|
||||
template<typename T>
|
||||
typename sizer<T>::type encode_start(T const&);
|
||||
|
||||
# else
|
||||
|
||||
template<typename T> typename disable_if<
|
||||
typename is_function<T>::type,
|
||||
@ -163,11 +168,6 @@ namespace boost
|
||||
typename is_function<T>::type,
|
||||
typename sizer<T>::type>::type encode_start(T&);
|
||||
|
||||
# else
|
||||
|
||||
template<typename T>
|
||||
typename sizer<T>::type encode_start(T const&);
|
||||
|
||||
# endif
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user