fail_ref_cview.cpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // Copyright 2002 The Trustees of Indiana University.
  2. // Use, modification and distribution is subject to the Boost Software
  3. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // Boost.MultiArray Library
  6. // Authors: Ronald Garcia
  7. // Jeremy Siek
  8. // Andrew Lumsdaine
  9. // See http://www.boost.org/libs/multi_array for documentation.
  10. //
  11. // fail_ref_cview.cpp
  12. // ensure const_array_view doesn't allow element assignment.
  13. //
  14. #include <boost/multi_array.hpp>
  15. #include <boost/core/lightweight_test.hpp>
  16. #include <boost/array.hpp>
  17. #include <boost/type.hpp>
  18. int
  19. main()
  20. {
  21. const int ndims=3;
  22. typedef boost::multi_array_ref<int,ndims> array_ref;
  23. boost::array<array_ref::size_type,ndims> sma_dims = {{2,3,4}};
  24. int data[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,
  25. 14,15,16,17,18,19,20,21,22,23};
  26. array_ref sma(data,sma_dims);
  27. //
  28. // subarray dims:
  29. // [base,stride,bound)
  30. // [0,1,2), [1,1,3), [0,2,4)
  31. //
  32. const array_ref& csma = sma;
  33. typedef array_ref::index_range range;
  34. array_ref::index_gen indices;
  35. array_ref::const_array_view<ndims>::type csma2 =
  36. csma[indices[range(0,2)][range(1,3)][range(0,4,2)]];
  37. boost::array<array_ref::index,3> elmt = {{0,0,0}};
  38. csma2(elmt) = 5; // FAIL! csma is read only
  39. return boost::report_errors();
  40. }