summaryrefslogtreecommitdiffstats
path: root/c++/src/H5Exception.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2016-04-22 15:26:39 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2016-04-22 15:26:39 (GMT)
commit5aea4260b5537793352e6c78a7737d700159f16f (patch)
treec0dcba82daf483fdec33d0e5c15f628c5f1effa8 /c++/src/H5Exception.cpp
parent5d4e4ed0cbb5c4eab3076e5f61813facaf72f82d (diff)
downloadhdf5-5aea4260b5537793352e6c78a7737d700159f16f.zip
hdf5-5aea4260b5537793352e6c78a7737d700159f16f.tar.gz
hdf5-5aea4260b5537793352e6c78a7737d700159f16f.tar.bz2
[svn-r29761] Purpose: Add function
Description: Added member function ArrayType::operator= because ArrayType has pointer data members. Merged from trunk r29306. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
Diffstat (limited to 'c++/src/H5Exception.cpp')
-rw-r--r--c++/src/H5Exception.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/c++/src/H5Exception.cpp b/c++/src/H5Exception.cpp
index f2aa38a..e3c6a62 100644
--- a/c++/src/H5Exception.cpp
+++ b/c++/src/H5Exception.cpp
@@ -47,11 +47,7 @@ Exception::Exception(const H5std_string& func, const H5std_string& message) : de
///\param orig - IN: Exception instance to copy
// Programmer Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
-Exception::Exception( const Exception& orig )
-{
- detail_message = orig.detail_message;
- func_name = orig.func_name;
-}
+Exception::Exception( const Exception& orig ) : detail_message(orig.detail_message), func_name(orig.func_name) {}
//--------------------------------------------------------------------------
// Function: Exception::getMajorString