diff options
Diffstat (limited to 'libbuild2/install')
-rw-r--r-- | libbuild2/install/utility.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/install/utility.hxx b/libbuild2/install/utility.hxx index ee78e17..2c0ca56 100644 --- a/libbuild2/install/utility.hxx +++ b/libbuild2/install/utility.hxx @@ -28,7 +28,7 @@ namespace build2 *s.var_pool ().find ("install"))); if (r.second) // Already set by the user? - r.first.get () = path_cast<path> (move (d)); + r.first = path_cast<path> (move (d)); } template <typename T> @@ -46,7 +46,7 @@ namespace build2 *s.var_pool ().find ("install.mode"))); if (r.second) // Already set by the user? - r.first.get () = move (m); + r.first = move (m); } template <typename T> |