diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-08-19 22:12:22 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-08-19 22:12:22 (GMT) |
commit | 96e92e0a4c697e4ce08bdcc289d907d41d9aad0a (patch) | |
tree | ee14727557de176eb0448828ae617737c6a04bd4 /c++/examples/chunks.cpp | |
parent | 3ca7a17507b0b18a35fc01a972d852ae5d567502 (diff) | |
download | hdf5-96e92e0a4c697e4ce08bdcc289d907d41d9aad0a.zip hdf5-96e92e0a4c697e4ce08bdcc289d907d41d9aad0a.tar.gz hdf5-96e92e0a4c697e4ce08bdcc289d907d41d9aad0a.tar.bz2 |
[svn-r11274] Purpose: Additional code improvement
Description:
Forgot to modify the examples for the "using" declaration changes
in the library. Added "using" declaration appropriately.
Platforms tested:
Linux 2.4 (heping) - very minor
Diffstat (limited to 'c++/examples/chunks.cpp')
-rw-r--r-- | c++/examples/chunks.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/c++/examples/chunks.cpp b/c++/examples/chunks.cpp index b6db2ad..bbaf5b1 100644 --- a/c++/examples/chunks.cpp +++ b/c++/examples/chunks.cpp @@ -28,6 +28,10 @@ #ifndef H5_NO_NAMESPACE using namespace H5; +#ifndef H5_NO_STD + using std::cout; + using std::endl; +#endif // H5_NO_STD #endif const string FILE_NAME( "SDSextendible.h5" ); |