forked from boostorg/logic
Logic: Remove obsolete MSVC version check.
[SVN r86041]
This commit is contained in:
@ -104,17 +104,11 @@ template<>
|
|||||||
inline std::basic_string<char> get_default_indeterminate_name<char>()
|
inline std::basic_string<char> get_default_indeterminate_name<char>()
|
||||||
{ return "indeterminate"; }
|
{ return "indeterminate"; }
|
||||||
|
|
||||||
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
#ifndef BOOST_NO_WCHAR_T
|
||||||
// VC++ 6.0 chokes on the specialization below, so we're stuck without
|
|
||||||
// wchar_t support. What a pain. TODO: it might just need a the template
|
|
||||||
// parameter as function parameter...
|
|
||||||
#else
|
|
||||||
# ifndef BOOST_NO_WCHAR_T
|
|
||||||
/// Returns the wide character string L"indeterminate".
|
/// Returns the wide character string L"indeterminate".
|
||||||
template<>
|
template<>
|
||||||
inline std::basic_string<wchar_t> get_default_indeterminate_name<wchar_t>()
|
inline std::basic_string<wchar_t> get_default_indeterminate_name<wchar_t>()
|
||||||
{ return L"indeterminate"; }
|
{ return L"indeterminate"; }
|
||||||
# endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// http://www.cantrip.org/locale.html
|
// http://www.cantrip.org/locale.html
|
||||||
|
Reference in New Issue
Block a user