diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-11-15 13:27:23 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-11-15 21:18:42 +0300 |
commit | 460eb164f0051cf0ffab6860220649c4f03c74fb (patch) | |
tree | 517455df26047c70429679c7bed790098cb39c4e /libbuild2/version/init.cxx | |
parent | 678345c5a96f14d05a56bce8a68bdd45dfe1d172 (diff) |
Use path_name_view in location and path_name_value in location_value
Diffstat (limited to 'libbuild2/version/init.cxx')
-rw-r--r-- | libbuild2/version/init.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libbuild2/version/init.cxx b/libbuild2/version/init.cxx index c9d5021..9a56756 100644 --- a/libbuild2/version/init.cxx +++ b/libbuild2/version/init.cxx @@ -74,8 +74,8 @@ namespace build2 if (nv.value != pn.string ()) { path bf (rs.src_path () / rs.root_extra->bootstrap_file); - location ml (&f, nv.value_line, nv.value_column); - location bl (&bf); + location ml (f, nv.value_line, nv.value_column); + location bl (bf); fail (ml) << "package name " << nv.value << " does not match " << "build system project name " << pn << @@ -164,7 +164,7 @@ namespace build2 } catch (const manifest_parsing& e) { - location l (&f, e.line, e.column); + location l (f, e.line, e.column); fail (l) << e.description; } catch (const io_error& e) |