Updated is_convertible tests.

Updated docs to reflec most of the recent changes.


[SVN r16032]
This commit is contained in:
John Maddock
2002-10-31 12:35:28 +00:00
parent a44fafcd68
commit d23af42bc3
2 changed files with 867 additions and 1256 deletions

2122
index.htm

File diff suppressed because it is too large Load Diff

View File

@ -40,7 +40,6 @@ BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible<const Base&, const Derived&>
BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible<const int *, int*>::value), false);
BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible<const int&, int&>::value), false);
BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible<int*, int[2]>::value), true);
BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible<const int*, int[3]>::value), false);
BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible<const int&, int>::value), true);
BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible<int(&)[4], const int*>::value), true);