From 3ba17db6300d7e0cfc4fa001b5a8eb91bf417ea3 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 12 Oct 2022 08:31:54 +0200 Subject: Switch to public/private variables model Now unqualified variables are project-private and can be typified. --- libbuild2/dump.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbuild2/dump.cxx') diff --git a/libbuild2/dump.cxx b/libbuild2/dump.cxx index 14078da..b8ec74e 100644 --- a/libbuild2/dump.cxx +++ b/libbuild2/dump.cxx @@ -208,7 +208,7 @@ namespace build2 for (action a: r.actions) os << ' ' << re.meta_operations[a.meta_operation ()]->name << - '(' << re.operations[a.operation ()]->name << ')'; + '(' << re.operations[a.operation ()].info->name << ')'; os << endl; r.dump_text (os, ind); @@ -289,7 +289,7 @@ namespace build2 os << "rule_hint="; if (v.operation != default_id) - os << s.root_scope ()->root_extra->operations[v.operation]->name + os << s.root_scope ()->root_extra->operations[v.operation].info->name << '@'; os << v.hint; -- cgit v1.1