diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2006-04-14 21:43:29 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2006-04-14 21:43:29 (GMT) |
commit | 3468ff3a5c4f6c384801edef9ae52ecc4f2de3c5 (patch) | |
tree | cc81f5c4766096ed07cd7f8c3d216e211fcfa24b /c++/src/H5IdComponent.cpp | |
parent | 11cf4bacb757be368697e0550a073aac4f6abe20 (diff) | |
download | hdf5-3468ff3a5c4f6c384801edef9ae52ecc4f2de3c5.zip hdf5-3468ff3a5c4f6c384801edef9ae52ecc4f2de3c5.tar.gz hdf5-3468ff3a5c4f6c384801edef9ae52ecc4f2de3c5.tar.bz2 |
[svn-r12253] Purpose: Maintenance
Description: Brought VMS changes back. My previous note about
using std::count; should be in this log.
C++ on VMS doesn't support "using std::count"
Solution: IFDEF'ed with H5_VMS (until Binh-Minh has a chance to look into it and
propose a different solution)
Platforms tested: VMS server, heping
Misc. update:
Diffstat (limited to 'c++/src/H5IdComponent.cpp')
-rw-r--r-- | c++/src/H5IdComponent.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/src/H5IdComponent.cpp b/c++/src/H5IdComponent.cpp index 908343c..fb12e61 100644 --- a/c++/src/H5IdComponent.cpp +++ b/c++/src/H5IdComponent.cpp @@ -15,11 +15,11 @@ #include <iostream> #endif /*H5_VMS*/ #include <string> +#ifndef H5_VMS #ifndef H5_NO_NAMESPACE -#ifdef H5_VMS using std::count; -#endif /*H5_VMS*/ #endif +#endif /*H5_VMS*/ #include "H5Include.h" #include "H5Exception.h" |