mirror of
https://github.com/boostorg/multi_array.git
synced 2025-05-10 07:23:52 +00:00
31 lines
683 B
C++
31 lines
683 B
C++
//
|
|
// fail_ref_cdata.cpp -
|
|
// Testing data() member function constness.
|
|
//
|
|
|
|
#include "boost/multi_array.hpp"
|
|
|
|
#define BOOST_INCLUDE_MAIN
|
|
#include "boost/test/test_tools.hpp"
|
|
|
|
#include "boost/array.hpp"
|
|
|
|
int
|
|
test_main(int,char*[])
|
|
{
|
|
const int ndims=3;
|
|
typedef boost::multi_array_ref<int,ndims> array_ref;
|
|
|
|
boost::array<array_ref::size_type,ndims> sma_dims = {{2,3,4}};
|
|
int data[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,
|
|
14,15,16,17,18,19,20,21,22,23};
|
|
array_ref sma(data,sma_dims);
|
|
|
|
const array_ref& csma = sma;
|
|
|
|
// FAIL! data() returns const int*.
|
|
int* cdptr = csma.data();
|
|
(void)cdptr; // suppress compiler warnings
|
|
return boost::exit_success;
|
|
}
|