Changes reflecting formal review comments

[SVN r7689]
This commit is contained in:
Beman Dawes
2000-08-30 12:44:40 +00:00
parent 6aa207d813
commit 38a335e3e7
6 changed files with 526 additions and 479 deletions

View File

@ -54,10 +54,11 @@ 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.assign(ia);
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);
}