Changed some variable names to appease vc-6_5.

[SVN r34198]
This commit is contained in:
Ronald Garcia 2006-06-06 18:13:44 +00:00
parent a76974ac36
commit eba81b3299

View File

@ -104,9 +104,9 @@ int test_main(int,char*[]) {
A.resize(boost::extents[3][4][2]);
int check = 0;
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 4; j++) {
for (int k = 0; k < 2; k++) {
for (int x = 0; x < 3; x++) {
for (int y = 0; y < 4; y++) {
for (int z = 0; z < 2; z++) {
BOOST_CHECK(*(A.data() + check) == check);
++check;
}