From 58f44a1c1bee0a8e102ba8d2057db6b26b9ff0f6 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 4 Jun 2026 12:25:41 +0200 Subject: [PATCH] Fix compile with VisualStudio --- kernel/register.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/register.cc b/kernel/register.cc index 004650ff2..a88d2acc8 100644 --- a/kernel/register.cc +++ b/kernel/register.cc @@ -948,7 +948,7 @@ struct HelpPass : public Pass { cmd_help.group = "frontends"; else if (has_source) { if (source_path.has_parent_path() && !no_source_group) - cmd_help.group = source_path.parent_path(); + cmd_help.group = source_path.parent_path().string(); } // implicit !has_source else if (name.find("equiv") == 0)