From 5ef242d146dfba1dff7e9bceae78e1c805ad03c7 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 17 Jan 2005 12:11:47 +0000 Subject: [PATCH] Disable some tests for MWCW [SVN r26717] --- test/concepts/concept_check.cpp | 2 ++ 1 file changed, 2 insertions(+) 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; }