@@ -398,7 +398,7 @@ namespace xt
398398
399399 template <class T , class IOH , layout_type L, class IP , class EXT , class S >
400400 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)
402402 {
403403 using chunk_storage = xchunk_store_manager<xfile_array<T, IOH, L>, IP>;
404404 chunk_storage chunks (shape, chunk_shape, path, pool_size, init_value, chunk_memory_layout);
@@ -407,7 +407,7 @@ namespace xt
407407
408408 template <class T , class IOH , layout_type L, class IP , class EXT , class S >
409409 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)
411411 {
412412 using sh_type = std::vector<std::size_t >;
413413 sh_type sh = xtl::make_sequence<sh_type>(shape.size ());
0 commit comments