diff --git a/test/concepts/concept_check.cpp b/test/concepts/concept_check.cpp index 89a204ae..8638e2d9 100644 --- a/test/concepts/concept_check.cpp +++ b/test/concepts/concept_check.cpp @@ -86,12 +86,14 @@ int main() regex_traits_tester_type1 > >(); +#ifndef __MWERKS__ // MWCW tries to instantiate std::basic_string, not sure whose bug this is.... typedef boost::basic_regex > regex_traits_tester_type2; boost::function_requires< boost::BaseRegexConcept< regex_traits_tester_type2 > >(); +#endif // __MWERKS__ #endif return 0; }