summaryrefslogtreecommitdiffstats
path: root/c++/src
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a comment.Binh-Minh Ribler2017-05-081-1/+1
|
* Code improvementBinh-Minh Ribler2017-05-0851-189/+140
| | | | | | | | | | | | Description: - Moved class H5File to inherit from class Group because an HDF5 file is a root group - Cleanup header file inclusion and class forward declaration - Revised comments Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* Format changes only.Binh-Minh Ribler2017-04-2352-2552/+2552
| | | | | Platforms tested: Linux/32 2.6 (jam) - very minor
* Miscellaneous clean-up: format and commentsBinh-Minh Ribler2017-04-1330-121/+191
| | | | | Platforms tested: Linux/64 (jelly) - very minor
* Description:Binh-Minh Ribler2017-04-1159-6277/+6277
| | | | | | Only format changes: mostly tabs vs. spaces Platforms tested: Linux/64 (jelly)
* Snapshot version 1.8 release 19 (snap1)HDF Tester2017-02-201-1/+1
|
* Snapshot version 1.8 release 19 (snap0)HDF Tester2017-02-131-1/+1
|
* HDFFV-9875 Bring changes from develop branchAllen Byrne2017-02-061-3/+4
|
* Update CMake required to version 3.2.2Allen Byrne2017-01-181-1/+1
|
* Merge commit '6974764348a' into hdf5_1_8lrknox2016-11-181-24/+37
|\ | | | | | | | | (HDF5 1.8.18 release changes) Update HISTORY-1_8.txt and RELEASE.txt files.
| * Set version and commit release script changes for 1.8.18 release.lrknox2016-11-111-1/+1
| |
| * Change default build mode to production.lrknox2016-11-081-1/+1
| | | | | | | | Update version to 1.8.18-pre2.
| * Update shared object file numbers according to changes in v1.8.18 release.lrknox2016-11-011-24/+37
| | | | | | | | | | Update autotools and libtool versions. Run bin/reconfigure.
| * Updated release preparation branch version number to 1.8.18-pre1lrknox2016-10-271-1/+1
| |
* | Updated support branch version number to 1.8.19-snap0lrknox2016-10-271-1/+1
|/
* Description:Binh-Minh Ribler2016-10-263-2/+4
| | | | | | | | | | | - 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)
* Purpose: Fix HDFFV-9532Binh-Minh Ribler2016-10-2357-233/+0
| | | | | | | | | | | | | Description: Removed obsolete macros from C++ API library and tests: H5_NO_NAMESPACE and __cplusplus Leave OLD_HEADER_FILENAME because iostream.h might still be in use, until further checking is done. Leave H5_NO_STD to consider retiring H5std_string first. Platforms tested: Linux/32 2.6 (jam) Linux/64 (jelly) Darwin (osx1010test)
* Add namespace and export utilsAllen Byrne2016-10-141-0/+1
|
* [svn-r30280] Purpose: Code improvement (HDFFR-9725)Binh-Minh Ribler2016-08-1222-99/+207
| | | | | | | | | | | | | Description: - Added "const" to arguments that should be const - Added "const" to const functions, i.e., function that don't change the objects they operate on. - Removed deprecated functions in previous releases due to missing const. Merged from trunk: 30272 and 30279 Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* [svn-r30191] Snapshot version 1.8 release 18 (snap1)HDF Tester2016-07-181-1/+1
|
* [svn-r30098] Snapshot version 1.8 release 18 (snap0)HDF Tester2016-06-191-1/+1
|
* [svn-r30057] Fix typo in compile scripts that causes filename in -o outfile ↵Larry Knox2016-06-081-1/+1
| | | | | | to be dropped. Addresses HDFFV-9530 and HDFFV-9938.
* [svn-r29808] Set version to 1.8.18-snap0Larry Knox2016-04-261-1/+1
|
* [svn-r29787] Purpose: Add new wrapperBinh-Minh Ribler2016-04-253-16/+25
| | | | | | | | | | Description: Added wrapper for H5Tset_nbit: void DSetCreatPropList::setNbit() const. Merged from trunk r29786. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* [svn-r29784] Purpose: Code improvementBinh-Minh Ribler2016-04-244-110/+55
| | | | | | | | | | | | | | Description: - Removed ArrayType::rank and ArrayType::dimensions and modified the methods ArrayType::getArrayNDims and ArrayType::getArrayDims to always call the C functions to get the rank and dimensions. - Overloaded ArrayType::getArrayNDims and ArrayType::getArrayDims to provide const version and marked the non-const version deprecated. Merged from trunk r29782. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* [svn-r29769] Purpose: Code improvementsBinh-Minh Ribler2016-04-2215-76/+65
| | | | | | | | | | | | | Description: - Changed object in catch statements to reference - Replaced old-style casts or reinterpret_cast with static_cast - Removed unused name H5Library::need_cleanup - Removed Exception::printError from documentation Merged from trunk r29759 and r29766 Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* [svn-r29765] Purpose: Code cleanupBinh-Minh Ribler2016-04-227-81/+51
| | | | | | | | | | | | | | | | Description: - Removed many warnings: warning: use of old-style cast warning: enumeration value ‘H5D_VIRTUAL’ not handled in switch warning: comparison between signed and unsigned There are others of the same warnings and they will be taken care of in the next release. - Made some code reuse between overloads Merged from trunk r29340. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* [svn-r29764] Purpose: Code cleanupBinh-Minh Ribler2016-04-228-144/+14
| | | | | | | | | | Description: Removed obsolete overloaded functions which had parameters that should be const but were not. They have been replaced by the correct version since 2014. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* [svn-r29762] Purpose: Remove obsoletesBinh-Minh Ribler2016-04-228-93/+126
| | | | | | | | | | | Description: Removed obsolete functions from the documentation. They are still in the code, however, until the next two releases, just in case. Merge from trunk r29322. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* [svn-r29761] Purpose: Add functionBinh-Minh Ribler2016-04-2213-31/+57
| | | | | | | | | | | 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)
* [svn-r29732] Snapshot version 1.8 release 17 (snap14)HDF Tester2016-04-181-1/+1
|
* [svn-r29617] Snapshot version 1.8 release 17 (snap13)HDF Tester2016-04-031-1/+1
|
* [svn-r29174] Snapshot version 1.8 release 17 (snap12)HDF Tester2016-02-211-1/+1
|
* [svn-r29060] Snapshot version 1.8 release 17 (snap11)HDF Tester2016-02-071-1/+1
|
* [svn-r29022] Snapshot version 1.8 release 17 (snap10)HDF Tester2016-01-311-1/+1
|
* [svn-r29005] Description:Binh-Minh Ribler2016-01-281-2/+2
| | | | | | Removed extra ';'. Platform tested jam (very minor)
* [svn-r28970] Snapshot version 1.8 release 17 (snap9)HDF Tester2016-01-251-1/+1
|
* [svn-r28953] Snapshot version 1.8 release 17 (snap8)Larry Knox2016-01-221-1/+1
|
* [svn-r28926] Purpose: Fix user reported problemBinh-Minh Ribler2016-01-184-52/+88
| | | | | | | | | | | | | | | | | Description: User Adam Rosenberger reported a failure when using the member function AbstractDs::getArrayType(). This problem was caused by missing initialization of the ArrayType's members in some cases. Solution: - Added ArrayType::setArrayInfo() to retrieve rank and dimensions of an array and store them in memory for easy access. - Re-factored a few functions to use the new function. - We'll give him 1.8.16 patch Merged from trunk r28905 Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* [svn-r28609] Snapshot version 1.8 release 17 (snap7)HDF Tester2015-12-131-1/+1
|
* [svn-r28438] Snapshot version 1.8 release 17 (snap6)HDF Tester2015-11-222-8/+8
|
* [svn-r28350] Snapshot version 1.8 release 17 (snap5)HDF Tester2015-11-151-1/+1
|
* [svn-r28326] Purpose: Fix documentsBinh-Minh Ribler2015-11-112-2/+2
| | | | | | | | Description: Added "///" to between \brief and \exception to work around a Doxygen bug and added a missing \return. Platforms tested: Linux/32 2.6 (jam) - only in function headers
* [svn-r28306] Snapshot version 1.8 release 17 (snap4)HDF Tester2015-11-081-1/+1
|
* [svn-r28262] Snapshot version 1.8 release 17 (snap3)HDF Tester2015-11-011-1/+1
|
* [svn-r28211] Snapshot version 1.8 release 17 (snap2)HDF Tester2015-10-251-1/+1
|
* [svn-r28125] Add library version changes based on lt_vers.am file.Allen Byrne2015-10-191-1/+1
|
* [svn-r28121] Snapshot version 1.8 release 17 (snap1)HDF Tester2015-10-181-1/+1
|
* [svn-r28096] Updated packaging scripts and moved them from bin to bin/pkgscrpts.Larry Knox2015-10-162-2/+20
| | | | | | Added shared library version numbers for each wrapper library file. Tested with h5committest.new.
* [svn-r28052] Purpose: Fix memory leaksBinh-Minh Ribler2015-10-137-39/+36
| | | | | | | | | | | | | Description: - Implemented the friend function void f_PropList_setId(PropList* plist, hid_t new_id) to work around the same problem described in trunk r26655, for the API DataSet::getCreatePlist() - Cleaned up some comments and obsolete functions Merged from trunk r28047 Platforms tested: Linux/32 2.6 (jam) Darwin (osx1010test)