We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d11388 commit 97d28d4Copy full SHA for 97d28d4
external/mdal/frmts/mdal_hdf5.hpp
@@ -27,7 +27,7 @@ struct HdfString
27
char data [HDF_MAX_NAME];
28
};
29
30
-template <int TYPE> inline void hdfClose( hid_t id ) { assert( false ); }
+template <int TYPE> inline void hdfClose( hid_t id ) { Q_UNUSED( id ); assert( false ); }
31
template <> inline void hdfClose<H5I_FILE>( hid_t id ) { H5Fclose( id ); }
32
template <> inline void hdfClose<H5I_GROUP>( hid_t id ) { H5Gclose( id ); }
33
template <> inline void hdfClose<H5I_DATASET>( hid_t id ) { H5Dclose( id ); }
0 commit comments