summaryrefslogtreecommitdiffstats
path: root/c++/examples/chunks.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2006-04-05 16:44:18 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2006-04-05 16:44:18 (GMT)
commit69a959c55bb4f1f3e5f1f44d93a56380c0e28889 (patch)
tree25c2be405e8d3ddb9ea4a9ca1ab7d5174cc8ef73 /c++/examples/chunks.cpp
parent6f7076f47b7e00b5172f80e5e08b3a3ab63d8a86 (diff)
downloadhdf5-69a959c55bb4f1f3e5f1f44d93a56380c0e28889.zip
hdf5-69a959c55bb4f1f3e5f1f44d93a56380c0e28889.tar.gz
hdf5-69a959c55bb4f1f3e5f1f44d93a56380c0e28889.tar.bz2
[svn-r12201] Purpose: Maintenance
Description: Changed to alias string instead of std, i.e. H5std_string instead of H5std, because the old way wasn't working when std didn't exist. Platforms tested: Linux 2.4 (heping) SunOS 5.8 64-bit (sol) HPUX 11.00 (kelgia) - this was the problematic platform but I wasn't able to test before.
Diffstat (limited to 'c++/examples/chunks.cpp')
-rw-r--r--c++/examples/chunks.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/c++/examples/chunks.cpp b/c++/examples/chunks.cpp
index 2955820..783fffa 100644
--- a/c++/examples/chunks.cpp
+++ b/c++/examples/chunks.cpp
@@ -35,11 +35,10 @@
#ifndef H5_NO_NAMESPACE
using namespace H5;
- using H5_std::string;
#endif
-const string FILE_NAME( "SDSextendible.h5" );
-const string DATASET_NAME( "ExtendibleArray" );
+const H5std_string FILE_NAME( "SDSextendible.h5" );
+const H5std_string DATASET_NAME( "ExtendibleArray" );
const int NX = 10;
const int NY = 5;
const int RANK = 2;