Skip to content

Commit

Permalink
Fix minor issue in ndarray_example
Browse files Browse the repository at this point in the history
  • Loading branch information
Wentzell committed Aug 27, 2023
1 parent 6a56932 commit c8ec3ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/ndarray_example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ int main(int argc, char **argv) {
auto G_iw = nda::array<std::complex<double>, 3>{};

// Read imaginary time data from "input.h5" file
auto input = h5::file(DATA_PATH + "/input.h5", 'r');
auto input = h5::file(DATA_PATH + "/input.h5"s, 'r');
h5::read(input, "data", G_iw);
h5::read(input, "mesh", mesh);

Expand Down

0 comments on commit c8ec3ed

Please sign in to comment.