summaryrefslogtreecommitdiffstats
path: root/c++
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2013-03-29 14:07:19 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2013-03-29 14:07:19 (GMT)
commitb4ef900d1f676a40ce217f1de88a9d05014f42eb (patch)
tree810ca412d91590b530845490b94a2bddad1e78ad /c++
parent47a4460b48c2fd30d556d2ce48f601565e7b92e4 (diff)
parentc5d9a4cc7c2529a444459c0c5934ea5b43f62d43 (diff)
downloadhdf5-b4ef900d1f676a40ce217f1de88a9d05014f42eb.zip
hdf5-b4ef900d1f676a40ce217f1de88a9d05014f42eb.tar.gz
hdf5-b4ef900d1f676a40ce217f1de88a9d05014f42eb.tar.bz2
[svn-r23489] merge VOL branch in:
- resolved conflicts with the VOL callbacks changes to support better async I/O - the IOD plugin still does not leverage those changes yet
Diffstat (limited to 'c++')
-rw-r--r--c++/src/H5Location.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/H5Location.cpp b/c++/src/H5Location.cpp
index be59f51..98878d7 100644
--- a/c++/src/H5Location.cpp
+++ b/c++/src/H5Location.cpp
@@ -279,7 +279,7 @@ bool H5Location::attrExists(const char* name) const
//--------------------------------------------------------------------------
bool H5Location::attrExists(const H5std_string& name) const
{
- attrExists(name.c_str());
+ return(attrExists(name.c_str()));
}
//--------------------------------------------------------------------------