diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2013-03-26 07:20:11 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2013-03-26 07:20:11 (GMT) |
commit | 782591cf138d141c5a4acdc01eefa731583d7156 (patch) | |
tree | 0c0e35483e3b7c60717875038357da98f338d98e /c++/src/H5Location.cpp | |
parent | 52d119088373c4aa34cbb0564bcbe452b92044b5 (diff) | |
download | hdf5-782591cf138d141c5a4acdc01eefa731583d7156.zip hdf5-782591cf138d141c5a4acdc01eefa731583d7156.tar.gz hdf5-782591cf138d141c5a4acdc01eefa731583d7156.tar.bz2 |
[svn-r23456] Description:
A "return" was missing from a non-void function. Fixed.
Platforms Tested:
Linux/32 2.6 (jam)
Linux/ppc64 (ostrich)
Asked Allen check Windows.
Diffstat (limited to 'c++/src/H5Location.cpp')
-rw-r--r-- | c++/src/H5Location.cpp | 2 |
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())); } //-------------------------------------------------------------------------- |