Skip to content

Commit b1547da

Browse files
committed
Fixed bug related to uint64 arrays in example script. Corrected documentation about DM's 64bit integer support.
1 parent a63ae57 commit b1547da

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/remarks.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ Data types
5959
|13 |Complex 16 |HDF_COMPOUND |See :ref:`complex-types-label` |
6060
| | | |PackedComplex 16 is also saved as this type|
6161
+-------+-------------------+-------------------+-------------------------------------------+
62-
|39 |Integer 8 Signed |HDF_NATIVE_INT64 |Only supported in GMS versions >= 2.0 |
62+
|39 |Integer 8 Signed |HDF_NATIVE_INT64 |Only partially supported by DM. |
6363
+-------+-------------------+-------------------+-------------------------------------------+
64-
|40 |Integer 8 Unsigned |HDF_NATIVE_UINT64 |Only supported in GMS versions >= 2.0 |
64+
|40 |Integer 8 Unsigned |HDF_NATIVE_UINT64 |Only partially supported by DM. |
6565
+-------+-------------------+-------------------+-------------------------------------------+
6666

6767
.. _data-spaces-label:

tests/CMD_import_hdf5.s

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// Tore Niermann
1111
//
1212
// REQUIREMENTS
13-
// HDF5 plugin version 1.0.0
13+
// HDF5 plugin version >= 1.0
1414
//
1515
//**************************************************************************
1616

@@ -116,7 +116,7 @@ String H5IMPORT_get_data_type_name(Number dtype)
116116
return "Complex128"
117117
else if (dtype == 39)
118118
return "Int64"
119-
else if (dtype == 30)
119+
else if (dtype == 40)
120120
return "UInt64"
121121
else
122122
return "<Unknown>"

0 commit comments

Comments
 (0)