Bug in vector init

This commit is contained in:
2020-05-27 16:19:42 +02:00
parent 5b6a6379e3
commit bacc869b98
+1 -1
View File
@@ -88,7 +88,7 @@ int main (int argc, char *argv[])
ImageAssembler image_assembler(n_modules);
// Generate list of buffer blocks that need to be loaded.
std::vector<uint64_t> buffer_blocks(n_blocks);
std::vector<uint64_t> buffer_blocks;
for (uint64_t curr_block=start_block;
curr_block<=stop_block;
curr_block++) {