summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* HDFFV-10876 Update dump to match DDL specAllen Byrne2020-05-2016-1377/+1481
|
* Yanked -Wc++-compat from the flags used to build the C library in bothDana Robinson2020-05-2037-175/+156
| | | | the Autotools and CMake.
* Add extra lineAllen Byrne2020-05-202-0/+2
|
* Adjust whitespaceAllen Byrne2020-05-202-4/+4
|
* Update h5ls help and rework dump_mem routines for attrsAllen Byrne2020-05-2014-303/+248
|
* Update create callsAllen Byrne2020-05-201-11/+12
|
* Add debug compile option as commentAllen Byrne2020-05-201-0/+2
|
* Update reference callsAllen Byrne2020-05-202-12/+23
|
* Fix issues with using H5Pget_fill_value() with file datatypes retrievedNeil Fortner2020-05-201-4/+4
| | | | from H5VLget_file_type().
* Add support for scalar dataspaces to H5Sproject_intersection. AddNeil Fortner2020-05-202-87/+130
| | | | checking for ank validity.
* Fixed missing blob callbacks in test VOL connectors.Dana Robinson2020-05-202-0/+12
|
* Add missing javadoc for new argAllen Byrne2020-05-201-0/+6
|
* Update data output referenceAllen Byrne2020-05-203-19/+56
|
* Update reference files and fix int as stringAllen Byrne2020-05-207-44/+50
|
* Add OAPL parameter to H5Rcreate_ APIsJordan Henderson2020-05-206-52/+83
|
* Fix failing test and retain semantics for chunk cache properties in ↵Chris Hogan2020-05-201-4/+34
| | | | non-chunked datasets
* Add two missing calls to H5I_dec_ref for new dapl_idChris Hogan2020-05-201-4/+7
|
* Community-proposed fixChris Hogan2020-05-202-7/+22
|
* Update to new error textAllen Byrne2020-05-202-6/+6
|
* Update reference files to latest outputAllen Byrne2020-05-2011-1620/+1230
|
* Fix missing free in H5T__ref_mem_read()Neil Fortner2020-05-201-0/+2
|
* Fix bugs in H5VL file comparison code. Add short circuit success toNeil Fortner2020-05-203-10/+16
| | | | H5VL_cmp_connector_cls().
* Implement file comparison VOL callback. Other changes to allowNeil Fortner2020-05-204-31/+152
| | | | | references to work with non-native connectors. There is a bug somewhere.
* H5R: fix H5Tconv to check for null referencesJerome Soumagne2020-05-205-46/+304
| | | | | | Valid for both deprecated and non-deprecated references Update test
* Add support for point selections to H5S_select_project_intersection.Neil Fortner2020-05-201-17/+113
|
* Remove H5VL_NATIVE_FILE_GET_FILE_ID and add H5VL_OBJECT_GET_FILEJerome Soumagne2020-05-2016-103/+88
| | | | Remove H5F__get_file_id() and use only private routine instead
* Revert "Make a squash commit of 'Quiet some warnings by adjusting warnings ↵David Young2020-05-2052-496/+313
| | | | level and fixing some code.' (commit 5c911d8baf3)"
* Revert "Oops, remove more C99 designated initializers for VS 2010 ↵David Young2020-05-204-14/+5
| | | | | | compatibility." This reverts commit f907b511d06612dafc7814a7c30f2f3d2b76d52b.
* Move checking for zero offset in selection adjust calls to the selection ↵Neil Fortner2020-05-203-87/+100
| | | | | | | callbacks. This makes the procedure for checking it consistent across selection types and between _s and _u, ensures it is always is performed even when called within the H5S package, and removes the redundant check that would occur when callins H5S_select_adjust_s() from outside the H5S package.
* Replace H5Sselect_adjust_u() and H5Shyper_adjust_s() withNeil Fortner2020-05-209-60/+210
| | | | | H5Sselect_adjust. Implement "adjust_s" callback for all selection types. Add range checking to H5Sselect_adjust().
* Trivial parameter renaming in VOL API calls.Dana Robinson2020-05-204-23/+23
|
* Oops, remove more C99 designated initializers for VS 2010 compatibility.David Young2020-05-204-5/+14
|
* Add an #include to get a function declaration.David Young2020-05-201-0/+1
|
* Don't use C99 designated initializers, they're not compatible withDavid Young2020-05-203-16/+24
| | | | Visual Studio 2010.
* Quiet some more maybe-uninitialized warnings---each is a false positive,David Young2020-05-203-3/+16
| | | | | *sigh*. This is more code that may not compile with VS2010, *sigh sigh*.
* Always warn on maybe-uninitialized. -Wincompatible-pointer-types was notDavid Young2020-05-201-2/+2
| | | | available until GCC 5, so enable it only if that's the GCC version we're using.
* Only promote maybe-uninitialized warnings to errors on GCC 8. Even onDavid Young2020-05-201-1/+7
| | | | | GCC 8, there may be false positives at low optimization levels? I need to check.
* Only use -Werror=cast-function-type with GCC 8 and later.David Young2020-05-201-1/+1
|
* Put all of the -W options back into the order I found them in so that it'sDavid Young2020-05-201-29/+23
| | | | easier to compare old and new config/gnu-flags.
* Add new source files to CMakeLists.txt.David Young2020-05-201-0/+2
|
* Mention the -Werror= flags in libhdf5.settings.in.David Young2020-05-201-1/+1
|
* free -> HDfreeDavid Young2020-05-201-1/+1
|
* Promote decleration-after-statement warnings to errors.David Young2020-05-201-1/+1
|
* Quiet decleration-after-statement warnings.David Young2020-05-202-6/+5
|
* Move a statement under some declarations since some vintages of VisualDavid Young2020-05-201-1/+2
| | | | Studio don't like declarations after statements.
* Document H5D__chunk_mem_xfree_wrapper().David Young2020-05-201-0/+5
|
* Undo accidental test deletion.David Young2020-05-201-1/+1
|
* Oops, delete a debug printf that snuck in here.David Young2020-05-201-1/+0
|
* Undo my changes to the HD macros, hadn't really intended those to be onDavid Young2020-05-201-7/+7
| | | | this branch....
* Make errors of some more warnings. Move disabled warnings toDavid Young2020-05-201-31/+43
| | | | | DEVELOPER_WARNING_CFLAGS. Put just one warning option on a line, and sort some of the options.