diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-09-18 17:11:12 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-09-18 17:11:12 (GMT) |
commit | 6f34503a5a93ae1ba97d35475643fac1ef70447e (patch) | |
tree | bf98891ae44f410775363d04557d6ab6a8494584 /c++/examples/compound.cpp | |
parent | 4775b6a3d9f6cd9be4865897d7ab8301222a076b (diff) | |
download | hdf5-6f34503a5a93ae1ba97d35475643fac1ef70447e.zip hdf5-6f34503a5a93ae1ba97d35475643fac1ef70447e.tar.gz hdf5-6f34503a5a93ae1ba97d35475643fac1ef70447e.tar.bz2 |
Whitespace cleanup
Diffstat (limited to 'c++/examples/compound.cpp')
-rw-r--r-- | c++/examples/compound.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/c++/examples/compound.cpp b/c++/examples/compound.cpp index 192a1cf..4b116e0 100644 --- a/c++/examples/compound.cpp +++ b/c++/examples/compound.cpp @@ -41,15 +41,15 @@ int main(void) { /* First structure and dataset*/ typedef struct s1_t { - int a; - float b; - double c; + int a; + float b; + double c; } s1_t; /* Second structure (subset of s1_t) and dataset*/ typedef struct s2_t { - double c; - int a; + double c; + int a; } s2_t; // Try block to detect exceptions raised by any of the calls inside it @@ -135,12 +135,12 @@ int main(void) */ cout << endl << "Field c : " << endl; for( i = 0; i < LENGTH; i++) - cout << s2[i].c << " "; + cout << s2[i].c << " "; cout << endl; cout << endl << "Field a : " << endl; for( i = 0; i < LENGTH; i++) - cout << s2[i].a << " "; + cout << s2[i].a << " "; cout << endl; /* @@ -161,7 +161,7 @@ int main(void) */ cout << endl << "Field b : " << endl; for( i = 0; i < LENGTH; i++) - cout << s3[i] << " "; + cout << s3[i] << " "; cout << endl; /* |