From 19ced5965abefdf0b7ac88ef736d16672b1f266e Mon Sep 17 00:00:00 2001 From: Alberto Miranda Date: Tue, 18 Jun 2019 21:22:08 +0200 Subject: [PATCH] Help compiler find appropriate function --- src/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.cpp b/src/utils.cpp index b46e586..232cd51 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -242,7 +242,7 @@ path relative(path p, path base=boost::filesystem::current_path()) { } // Now navigate down the directory branch - ret.append(p_it, p.end()); + ret.append(p_it, p.end(), path::codecvt()); return ret; } -- GitLab