ext/nmatrix/storage/storage.h in nmatrix-0.0.5 vs ext/nmatrix/storage/storage.h in nmatrix-0.0.6

- old
+ new

@@ -32,11 +32,11 @@ /* * Standard Includes */ -#include <stdlib.h> +#include <cstdlib> /* * Project Includes */ @@ -84,15 +84,15 @@ ///////////////////////// // Copying and Casting // ///////////////////////// - STORAGE* nm_dense_storage_from_list(const STORAGE* right, nm::dtype_t l_dtype); - STORAGE* nm_dense_storage_from_yale(const STORAGE* right, nm::dtype_t l_dtype); - STORAGE* nm_list_storage_from_dense(const STORAGE* right, nm::dtype_t l_dtype); - STORAGE* nm_list_storage_from_yale(const STORAGE* right, nm::dtype_t l_dtype); - STORAGE* nm_yale_storage_from_list(const STORAGE* right, nm::dtype_t l_dtype); - STORAGE* nm_yale_storage_from_dense(const STORAGE* right, nm::dtype_t l_dtype); + STORAGE* nm_dense_storage_from_list(const STORAGE* right, nm::dtype_t l_dtype, void*); + STORAGE* nm_dense_storage_from_yale(const STORAGE* right, nm::dtype_t l_dtype, void*); + STORAGE* nm_list_storage_from_dense(const STORAGE* right, nm::dtype_t l_dtype, void*); + STORAGE* nm_list_storage_from_yale(const STORAGE* right, nm::dtype_t l_dtype, void*); + STORAGE* nm_yale_storage_from_list(const STORAGE* right, nm::dtype_t l_dtype, void*); + STORAGE* nm_yale_storage_from_dense(const STORAGE* right, nm::dtype_t l_dtype, void*); } // end of extern "C" block #endif // STORAGE_H