diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-02-09 13:07:05 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-02-09 13:07:05 +0200 |
commit | 1a55c0d6ec9b1cd9f78de82ed068224cac4e6cb2 (patch) | |
tree | d7d9cd6da1e94755dd522556becf3155b292ea5d /libbuild2/cc | |
parent | f59065dd443f43b8e99931c001e03283c20e9c63 (diff) |
Minor simplification
Diffstat (limited to 'libbuild2/cc')
-rw-r--r-- | libbuild2/cc/common.cxx | 4 | ||||
-rw-r--r-- | libbuild2/cc/pkgconfig.cxx | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/libbuild2/cc/common.cxx b/libbuild2/cc/common.cxx index 7492181..d11b216 100644 --- a/libbuild2/cc/common.cxx +++ b/libbuild2/cc/common.cxx @@ -899,7 +899,7 @@ namespace build2 if (p.second) { - p.first.get () = string ("cc"); + p.first = string ("cc"); if (sys) t.vars.assign (c_system) = true; @@ -951,7 +951,7 @@ namespace build2 strings o; o.push_back (move (d)); - p.first.get () = move (o); + p.first = move (o); } } }; diff --git a/libbuild2/cc/pkgconfig.cxx b/libbuild2/cc/pkgconfig.cxx index 25df3df..48219f2 100644 --- a/libbuild2/cc/pkgconfig.cxx +++ b/libbuild2/cc/pkgconfig.cxx @@ -739,7 +739,7 @@ namespace build2 // export stub and we shouldn't touch them. // if (p.second) - p.first.get () = move (pops); + p.first = move (pops); } }; @@ -1090,7 +1090,7 @@ namespace build2 auto p (t.vars.insert (c_export_loptions)); if (p.second) - p.first.get () = move (lops); + p.first = move (lops); } // Set even if empty (export override). @@ -1099,7 +1099,7 @@ namespace build2 auto p (t.vars.insert (la ? c_export_imp_libs : c_export_libs)); if (p.second) - p.first.get () = move (libs); + p.first = move (libs); } }; |