aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/link-rule.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-08-15 13:42:55 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-08-15 13:42:55 +0200
commit916769d98afdc7912aa90e2443fb2ac06d46d36e (patch)
tree155c266f642ced1e96a22d745eb4e3b770f4a329 /build2/cc/link-rule.cxx
parent3f44e2e791d4a067ff16b5246463487a25371880 (diff)
Minor naming improvement
Diffstat (limited to 'build2/cc/link-rule.cxx')
-rw-r--r--build2/cc/link-rule.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/build2/cc/link-rule.cxx b/build2/cc/link-rule.cxx
index acc5b7e..e627aff 100644
--- a/build2/cc/link-rule.cxx
+++ b/build2/cc/link-rule.cxx
@@ -846,7 +846,7 @@ namespace build2
add_adhoc_member<libi> (t);
}
- md.libs_data = derive_libs_paths (t, p, s);
+ md.libs_paths = derive_libs_paths (t, p, s);
}
break;
@@ -2098,7 +2098,7 @@ namespace build2
//
if (lt.shared_library ())
{
- const libs_paths& paths (md.libs_data);
+ const libs_paths& paths (md.libs_paths);
const string& leaf (paths.effect_soname ().leaf ().string ());
if (tclass == "macos")
@@ -2544,7 +2544,7 @@ namespace build2
//
if (lt.shared_library ())
{
- const libs_paths& paths (md.libs_data);
+ const libs_paths& paths (md.libs_paths);
const path& p (paths.clean);
if (!p.empty ())
@@ -2874,7 +2874,7 @@ namespace build2
}
};
- const libs_paths& paths (md.libs_data);
+ const libs_paths& paths (md.libs_paths);
const path& lk (paths.link);
const path& ld (paths.load);
@@ -2985,7 +2985,7 @@ namespace build2
//
if (lt.shared_library ())
{
- const libs_paths& lp (md.libs_data);
+ const libs_paths& lp (md.libs_paths);
auto add = [&extras] (const path& p)
{