Skip to content

Commit

Permalink
missing include added #2
Browse files Browse the repository at this point in the history
  • Loading branch information
superg committed Nov 11, 2023
1 parent 211fd0b commit b3d3386
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hash.ixx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module;
#include <filesystem>
#include <fstream>
#include <vector>
#include "throw_line.hh"

export module hash;
Expand Down Expand Up @@ -32,7 +33,7 @@ export void redumper_hash(const Options &options)

auto image_prefix = (std::filesystem::path(options.image_path) / options.image_name).string();

std::list<std::filesystem::path> files;
std::vector<std::filesystem::path> files;
if(std::filesystem::exists(image_prefix + ".cue"))
{
for(auto const &t : cue_get_entries(image_prefix + ".cue"))
Expand Down

0 comments on commit b3d3386

Please sign in to comment.