diff options
Diffstat (limited to 'libbuild2/version/utility.cxx')
-rw-r--r-- | libbuild2/version/utility.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/version/utility.cxx b/libbuild2/version/utility.cxx index 0669da7..867aaa8 100644 --- a/libbuild2/version/utility.cxx +++ b/libbuild2/version/utility.cxx @@ -63,12 +63,12 @@ namespace build2 } catch (const manifest_parsing& e) { - location l (&in, e.line, e.column); + location l (in, e.line, e.column); fail (l) << e.description; } catch (const manifest_serialization& e) { - location l (&r.path); + location l (r.path); fail (l) << e.description; } catch (const io_error& e) |