Move from boost-sandbox

[SVN r18960]
This commit is contained in:
Joel de Guzman
2003-07-07 14:26:16 +00:00
parent 80d9e8e4c1
commit 4716891117
15 changed files with 1762 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#include <boost/iterator/reverse_iterator.hpp>
#include <boost/cstdlib.hpp>
int main()
{
typedef boost::reverse_iterator<int*> rev_iter1;
typedef boost::reverse_iterator<char*> rev_iter2;
return boost::is_convertible<rev_iter1, rev_iter2>::value
? boost::exit_failure : boost::exit_success;
}