2
0
mirror of https://github.com/boostorg/array.git synced 2026-01-23 05:22:08 +00:00

This commit was manufactured by cvs2svn to create tag

'Version_1_17_0'.

[SVN r8293]
This commit is contained in:
nobody
2000-11-22 09:04:29 +00:00
parent 2a876cf76e
commit 938a4c0728
8 changed files with 492 additions and 597 deletions

View File

@@ -54,11 +54,10 @@ int main()
<< std::endl;
}
typedef boost::array<double,6> DArray;
typedef boost::array<int,6> IArray;
IArray ia = { 1, 2, 3, 4, 5, 6 };
DArray da;
da = ia;
da.assign(42);
//typedef boost::array<double,6> DArray;
//typedef boost::array<int,6> IArray;
//IArray ia = { { 1, 2, 3, 4, 5, 6 } };
//DArray da;
//da.assign(ia);
}