@@ -398,7 +398,7 @@ namespace xt
398
398
399
399
template <class T , class IOH , layout_type L, class IP , class EXT , class S >
400
400
inline xchunked_array<xchunk_store_manager<xfile_array<T, IOH, L>, IP>, EXT>
401
- chunked_file_array (S&& shape, S&& chunk_shape, const std::string& path, const T& init_value,std::size_t pool_size, layout_type chunk_memory_layout)
401
+ chunked_file_array (S&& shape, S&& chunk_shape, const std::string& path, const T& init_value, std::size_t pool_size, layout_type chunk_memory_layout)
402
402
{
403
403
using chunk_storage = xchunk_store_manager<xfile_array<T, IOH, L>, IP>;
404
404
chunk_storage chunks (shape, chunk_shape, path, pool_size, init_value, chunk_memory_layout);
@@ -407,7 +407,7 @@ namespace xt
407
407
408
408
template <class T , class IOH , layout_type L, class IP , class EXT , class S >
409
409
inline xchunked_array<xchunk_store_manager<xfile_array<T, IOH, L>, IP>, EXT>
410
- chunked_file_array (std::initializer_list<S> shape, std::initializer_list<S> chunk_shape, const std::string& path, const T& init_value,std::size_t pool_size, layout_type chunk_memory_layout)
410
+ chunked_file_array (std::initializer_list<S> shape, std::initializer_list<S> chunk_shape, const std::string& path, const T& init_value, std::size_t pool_size, layout_type chunk_memory_layout)
411
411
{
412
412
using sh_type = std::vector<std::size_t >;
413
413
sh_type sh = xtl::make_sequence<sh_type>(shape.size ());
0 commit comments