Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/mtl_headers/mtl/linalg_vec.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ class linalg_vec {
typedef difference_type Vec_difference_type;
typedef iterator Vec_iterator;
typedef const_iterator Vec_const_iterator;
typedef value_type Vec_value_type;

class IndexArray {
public:
Expand Down
10 changes: 5 additions & 5 deletions src/utils/toolbox/database/HDFDatabase.cc
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ void HDFDatabase::putBoolArray(
herr_t errf;
if (nelements > 0) {

hsize_t dim[] = {nelements};
hsize_t dim[] = {(unsigned long long)nelements};
hid_t space = H5Screate_simple(1, dim, NULL);
#ifdef ASSERT_HDF5_RETURN_VALUES
assert( space >= 0 );
Expand Down Expand Up @@ -1233,7 +1233,7 @@ void HDFDatabase::putDoubleArray(
herr_t errf;
if (nelements > 0) {

hsize_t dim[] = {nelements};
hsize_t dim[] = {(unsigned long long)nelements};
hid_t space = H5Screate_simple(1, dim, NULL);
#ifdef ASSERT_HDF5_RETURN_VALUES
assert( space >= 0 );
Expand Down Expand Up @@ -1478,7 +1478,7 @@ void HDFDatabase::putFloatArray(
herr_t errf;
if (nelements > 0) {

hsize_t dim[] = {nelements};
hsize_t dim[] = {(unsigned long long)nelements};
hid_t space = H5Screate_simple(1, dim, NULL);
#ifdef ASSERT_HDF5_RETURN_VALUES
assert( space >= 0 );
Expand Down Expand Up @@ -1722,7 +1722,7 @@ void HDFDatabase::putIntegerArray(
herr_t errf;
if (nelements > 0) {

hsize_t dim[] = {nelements};
hsize_t dim[] = {(unsigned long long)nelements};
hid_t space = H5Screate_simple(1, dim, NULL);
#ifdef ASSERT_HDF5_RETURN_VALUES
assert(space >= 0);
Expand Down Expand Up @@ -1998,7 +1998,7 @@ void HDFDatabase::putStringArray(
assert( errf >= 0 );
#endif

hsize_t dim[] = {nelements};
hsize_t dim[] = {(unsigned long long)nelements};
hid_t space = H5Screate_simple(1, dim, NULL);
#ifdef ASSERT_HDF5_RETURN_VALUES
assert( space >= 0 );
Expand Down