From b3d338663b1fdf371a32704f750e2a0fb19d2b02 Mon Sep 17 00:00:00 2001 From: Hennadiy Brych Date: Fri, 10 Nov 2023 22:08:32 -0500 Subject: [PATCH] missing include added #2 --- hash.ixx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hash.ixx b/hash.ixx index bb8e3d4..2726541 100644 --- a/hash.ixx +++ b/hash.ixx @@ -1,6 +1,7 @@ module; #include #include +#include #include "throw_line.hh" export module hash; @@ -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 files; + std::vector files; if(std::filesystem::exists(image_prefix + ".cue")) { for(auto const &t : cue_get_entries(image_prefix + ".cue"))