1
0
forked from boostorg/core

Remove inline friend begin and end functions

This commit is contained in:
Glen Fernandes
2022-05-13 18:26:08 -04:00
parent 0212774324
commit 42ed795866
3 changed files with 0 additions and 30 deletions

View File

@@ -362,18 +362,6 @@ void test_crend()
BOOST_TEST_EQ((boost::span<int>(&a[0], 4).crend().base()), &a[0]);
}
void test_begin_span()
{
int a[4];
BOOST_TEST_EQ((begin(boost::span<int>(&a[0], 4))), &a[0]);
}
void test_end_span()
{
int a[4];
BOOST_TEST_EQ((end(boost::span<int>(&a[0], 4))), &a[4]);
}
int main()
{
test_extent();
@@ -421,8 +409,6 @@ int main()
test_cend();
test_crbegin();
test_crend();
test_begin_span();
test_end_span();
return boost::report_errors();
}
#else