forked from boostorg/array
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3d9f39814c | |||
| 89f09e33f1 |
@@ -207,13 +207,13 @@ namespace boost {
|
|||||||
typedef std::ptrdiff_t difference_type;
|
typedef std::ptrdiff_t difference_type;
|
||||||
|
|
||||||
// iterator support
|
// iterator support
|
||||||
iterator begin() BOOST_NOEXCEPT { return iterator( reinterpret_cast< T * >( this ) ); }
|
BOOST_CXX14_CONSTEXPR iterator begin() BOOST_NOEXCEPT { return data(); }
|
||||||
const_iterator begin() const BOOST_NOEXCEPT { return const_iterator( reinterpret_cast< const T * >( this ) ); }
|
BOOST_CONSTEXPR const_iterator begin() const BOOST_NOEXCEPT { return data(); }
|
||||||
const_iterator cbegin() const BOOST_NOEXCEPT { return const_iterator( reinterpret_cast< const T * >( this ) ); }
|
BOOST_CONSTEXPR const_iterator cbegin() const BOOST_NOEXCEPT { return data(); }
|
||||||
|
|
||||||
iterator end() BOOST_NOEXCEPT { return begin(); }
|
BOOST_CXX14_CONSTEXPR iterator end() BOOST_NOEXCEPT { return begin(); }
|
||||||
const_iterator end() const BOOST_NOEXCEPT { return begin(); }
|
BOOST_CONSTEXPR const_iterator end() const BOOST_NOEXCEPT { return begin(); }
|
||||||
const_iterator cend() const BOOST_NOEXCEPT { return cbegin(); }
|
BOOST_CONSTEXPR const_iterator cend() const BOOST_NOEXCEPT { return cbegin(); }
|
||||||
|
|
||||||
// reverse iterator support
|
// reverse iterator support
|
||||||
typedef std::reverse_iterator<iterator> reverse_iterator;
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
||||||
|
|||||||
+6
-1
@@ -44,7 +44,12 @@ void RunTests()
|
|||||||
BOOST_TEST ( const_test_case.begin() == const_test_case.end());
|
BOOST_TEST ( const_test_case.begin() == const_test_case.end());
|
||||||
BOOST_TEST ( const_test_case.cbegin() == const_test_case.cend());
|
BOOST_TEST ( const_test_case.cbegin() == const_test_case.cend());
|
||||||
|
|
||||||
BOOST_TEST ( test_case.begin() != const_test_case.begin() );
|
// BOOST_TEST ( test_case.begin() != const_test_case.begin() );
|
||||||
|
//
|
||||||
|
// TR1 specified that begin() must return a unique value for zero-sized
|
||||||
|
// arrays. However, this makes constexpr unimplementable, and all standard
|
||||||
|
// libraries have converged on using nullptr instead (see LWG issue 2157.)
|
||||||
|
|
||||||
if( test_case.data() == const_test_case.data() ) {
|
if( test_case.data() == const_test_case.data() ) {
|
||||||
// Value of data is unspecified in TR1, so no requirement this test pass or fail
|
// Value of data is unspecified in TR1, so no requirement this test pass or fail
|
||||||
// However, it must compile!
|
// However, it must compile!
|
||||||
|
|||||||
@@ -39,20 +39,17 @@ template<class T> void test2()
|
|||||||
{
|
{
|
||||||
constexpr boost::array<T, 0> a = {};
|
constexpr boost::array<T, 0> a = {};
|
||||||
|
|
||||||
// iterator access is not constexpr for boost::array<T, 0>
|
|
||||||
// it is for std::array<T, 0>, though, so we should change it
|
|
||||||
|
|
||||||
STATIC_ASSERT( a.begin() == a.end() );
|
STATIC_ASSERT( a.begin() == a.end() );
|
||||||
STATIC_ASSERT( a.cbegin() == a.cend() );
|
STATIC_ASSERT( a.cbegin() == a.cend() );
|
||||||
}
|
}
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
// test1<int, 0>();
|
test1<int, 0>();
|
||||||
test1<int, 1>();
|
test1<int, 1>();
|
||||||
test1<int, 7>();
|
test1<int, 7>();
|
||||||
|
|
||||||
// test2<int>();
|
test2<int>();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user