From e761a9fb6d02d7071bde4e87ea705cbe526df5c4 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Wed, 26 Nov 2025 00:22:26 +0000 Subject: [PATCH] Use std::filesystem::path instead of Path in libexpr. --- src/libexpr/parser.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libexpr/parser.y b/src/libexpr/parser.y index 520086e28..c9ad30407 100644 --- a/src/libexpr/parser.y +++ b/src/libexpr/parser.y @@ -384,7 +384,7 @@ path_start std::string_view($1.p, $1.l) ); } - Path path(getHome() + std::string($1.p + 1, $1.l - 1)); + Path path(getHome().string() + std::string($1.p + 1, $1.l - 1)); $$ = state->exprs.add(state->exprs.alloc, ref(state->rootFS), path); } ;