From d4c4b88d76bc555241e866eab116758dedc86808 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20G=C3=BCndling?= Date: Tue, 8 Oct 2024 17:38:06 +0200 Subject: [PATCH] fix compilation on msvc --- exe/import.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exe/import.cc b/exe/import.cc index 102351cc..b92b3b2f 100644 --- a/exe/import.cc +++ b/exe/import.cc @@ -91,7 +91,7 @@ int main(int ac, char** av) { } } } else if (exists(in) && !recursive) { - input_files.emplace_back(in, c); + input_files.emplace_back(in.generic_string(), c); } if (input_files.empty()) {