From 622f15aea2c5d1d687a6c6ee76a0222a917320db Mon Sep 17 00:00:00 2001 From: arabian Date: Sat, 10 Jan 2026 19:54:20 +0300 Subject: [PATCH] remove unnecessary filesyste:: --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 7900992..3f5b633 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -61,9 +61,9 @@ int main(int argc, char *argv[]) if (parse_args(argc, argv, input_path, output_path, manifest_path) == 1) return 0; - input_path = filesystem::absolute(input_path); - output_path = filesystem::absolute(output_path); - manifest_path = filesystem::absolute(manifest_path); + input_path = absolute(input_path); + output_path = absolute(output_path); + manifest_path = absolute(manifest_path); if (check_pathes(input_path, output_path, manifest_path) == 1) return 0;