SunPro test program fix.

[SVN r27147]
This commit is contained in:
John Maddock
2005-02-05 13:12:23 +00:00
parent 012fe3a99d
commit c3f16e3834

View File

@ -221,7 +221,9 @@ void test_unicode();
// template instances: // template instances:
// we pretty much have to instantiate these separately // we pretty much have to instantiate these separately
// otherwise compilation times are really excessive... // otherwise compilation times are really excessive...
// Unfortunately this doesn't work with SunPro:
// //
#ifndef __SUNPRO_CC
#ifndef BOOST_REGEX_TEST_INSTANCES #ifndef BOOST_REGEX_TEST_INSTANCES
#define template template<> #define template template<>
#endif #endif
@ -239,5 +241,6 @@ template void test<wchar_t, test_invalid_regex_tag>(const wchar_t&, const test_i
#ifndef BOOST_REGEX_TEST_INSTANCES #ifndef BOOST_REGEX_TEST_INSTANCES
#undef template #undef template
#endif #endif
#endif
#endif #endif