Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/multi_array/test/fail_cview2.cpp @ 45

Last change on this file since 45 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 1.4 KB
Line 
1// Copyright 2002 The Trustees of Indiana University.
2
3// Use, modification and distribution is subject to the Boost Software
4// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt)
6
7//  Boost.MultiArray Library
8//  Authors: Ronald Garcia
9//           Jeremy Siek
10//           Andrew Lumsdaine
11//  See http://www.boost.org/libs/multi_array for documentation.
12
13//
14// fail_cview2.cpp
15//   ensure const_array_view cannot be converted to array_view
16//
17
18#include "boost/multi_array.hpp"
19
20#define BOOST_INCLUDE_MAIN
21#include "boost/test/test_tools.hpp"
22
23#include "boost/array.hpp"
24#include "boost/type.hpp"
25
26int
27test_main(int,char*[])
28{
29  const int ndims=3;
30  typedef boost::multi_array<int,ndims> array;
31
32  boost::array<array::size_type,ndims> sma_dims = {{2,3,4}};
33
34  int data[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,
35                 14,15,16,17,18,19,20,21,22,23};
36  const int data_size = 24;
37
38  array sma(sma_dims);
39  sma.assign(data,data+data_size);
40
41  //
42  // subarray dims:
43  // [base,stride,bound)
44  // [0,1,2), [1,1,3), [0,2,4)
45  //
46 
47  const array& csma = sma;
48  typedef array::index_range range;
49  array::index_gen indices;
50  // FAIL! preserve constness (no const_array_view -> array_view).
51  array::array_view<ndims>::type csma2 =
52    csma[indices[range(0,2)][range(1,3)][range(0,4,2)]];
53
54  return boost::exit_success;
55}
56
57
58
59
60
61
62
Note: See TracBrowser for help on using the repository browser.