From 782591cf138d141c5a4acdc01eefa731583d7156 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Tue, 26 Mar 2013 02:20:11 -0500 Subject: [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. --- c++/src/H5Location.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())); } //-------------------------------------------------------------------------- -- cgit v0.12