Ooops this should test for regex.

[SVN r32938]
This commit is contained in:
John Maddock
2006-02-15 14:13:45 +00:00
parent c9f3fe3bfc
commit cc16193bea

View File

@ -5,15 +5,15 @@
// See http://www.boost.org/libs/config for most recent version. // See http://www.boost.org/libs/config for most recent version.
// MACRO: BOOST_HAS_TR1_ARRAY // MACRO: BOOST_HAS_TR1_REGEX
// TITLE: std::tr1::array // TITLE: std::tr1::regex
// DESCRIPTION: The std lib has a tr1-conforming array library. // DESCRIPTION: The std lib has a tr1-conforming regex library.
#include <array> #include <regex>
namespace boost_has_tr1_array{ namespace boost_has_tr1_regex{
using std::tr1::array; using std::tr1::regex;
int test() int test()
{ {
@ -21,3 +21,4 @@ int test()
} }
} }