summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2006-04-14 21:43:29 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2006-04-14 21:43:29 (GMT)
commit3468ff3a5c4f6c384801edef9ae52ecc4f2de3c5 (patch)
treecc81f5c4766096ed07cd7f8c3d216e211fcfa24b
parent11cf4bacb757be368697e0550a073aac4f6abe20 (diff)
downloadhdf5-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:
-rw-r--r--c++/src/H5IdComponent.cpp4
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"