Fix the test built with <native-wchar_t>off on vc-7_1 and vc-8_0

[SVN r35760]
This commit is contained in:
Alexander Nasonov
2006-10-28 14:37:37 +00:00
parent ef439017ca
commit c004fb5fc6
2 changed files with 2 additions and 2 deletions

View File

@@ -955,7 +955,7 @@ namespace boost
BOOST_STATIC_CONSTANT(bool, value = false);
};
#ifndef DISABLE_WIDE_CHAR_SUPPORT
#if !defined(DISABLE_WIDE_CHAR_SUPPORT) && !defined(BOOST_NO_INTRINSIC_WCHAR_T)
template<>
struct lcast_streambuf_for_target<wchar_t>
{

View File

@@ -498,7 +498,7 @@ void test_conversion_from_integral_for_locale()
{
test_conversion_from_integral_to_integral<T>();
test_conversion_from_integral_to_string<T>('0');
#ifndef DISABLE_WIDE_CHAR_SUPPORT
#if !defined(DISABLE_WIDE_CHAR_SUPPORT) && !defined(BOOST_NO_INTRINSIC_WCHAR_T)
test_conversion_from_integral_to_string<T>(L'0');
#endif
}