Fixed regex memory leak, and type_traits bad test case

[SVN r8273]
This commit is contained in:
John Maddock 2000-11-21 12:39:09 +00:00
parent 4bd6909ea1
commit 331a2b8282

View File

@ -608,7 +608,7 @@ int main()
value_test(false, (boost::is_convertible<const int *, int*>::value)); value_test(false, (boost::is_convertible<const int *, int*>::value));
value_test(false, (boost::is_convertible<const int&, int&>::value)); value_test(false, (boost::is_convertible<const int&, int&>::value));
value_test(false, (boost::is_convertible<int*, int[2]>::value)); value_test(true, (boost::is_convertible<int*, int[2]>::value));
value_test(false, (boost::is_convertible<const int*, int[3]>::value)); value_test(false, (boost::is_convertible<const int*, int[3]>::value));
value_test(true, (boost::is_convertible<const int&, int>::value)); value_test(true, (boost::is_convertible<const int&, int>::value));
value_test(true, (boost::is_convertible<int(&)[4], const int*>::value)); value_test(true, (boost::is_convertible<int(&)[4], const int*>::value));
@ -641,3 +641,4 @@ int main()