diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-10-26 19:16:24 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-10-26 19:16:24 (GMT) |
commit | 889d7fd73341a377dff98673d08031e422c18ab0 (patch) | |
tree | 756c2a7c86ed66dd8410b37f959b9d31075c26cd /c++/src/H5Library.cpp | |
parent | 581c0acfa9eb1eb6cb22d8973f7f0aec973b9e06 (diff) | |
download | hdf5-889d7fd73341a377dff98673d08031e422c18ab0.zip hdf5-889d7fd73341a377dff98673d08031e422c18ab0.tar.gz hdf5-889d7fd73341a377dff98673d08031e422c18ab0.tar.bz2 |
Description:
- In the test for HDFFV-9758, a pragma pack(1) caused failure on Emu
because Sparc cannot access misaligned data. Changed it to pack() to
do the default alignment.
- Added DOXYGEN_SHOULD_SKIP_THIS blocks to private elements to prevent
warnings from doxygen.
Platforms tested:
SunOS 5.11 (emu)
Linux/32 2.6 (jam)
Diffstat (limited to 'c++/src/H5Library.cpp')
-rw-r--r-- | c++/src/H5Library.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/c++/src/H5Library.cpp b/c++/src/H5Library.cpp index 4d1f279..1726121 100644 --- a/c++/src/H5Library.cpp +++ b/c++/src/H5Library.cpp @@ -253,6 +253,7 @@ void H5Library::setFreeListLimits(int reg_global_lim, int reg_list_lim, } } +#ifndef DOXYGEN_SHOULD_SKIP_THIS //-------------------------------------------------------------------------- // Function: H5Library default constructor - private ///\brief Default constructor: Creates a stub H5Library object @@ -266,5 +267,6 @@ H5Library::H5Library(){} // Programmer Binh-Minh Ribler - 2000 //-------------------------------------------------------------------------- H5Library::~H5Library(){} +#endif // DOXYGEN_SHOULD_SKIP_THIS } // end namespace |