aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/types.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2/types.ixx')
-rw-r--r--libbuild2/types.ixx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/types.ixx b/libbuild2/types.ixx
index 750c8c7..bf44cff 100644
--- a/libbuild2/types.ixx
+++ b/libbuild2/types.ixx
@@ -43,7 +43,7 @@ namespace build2
}
inline location_value::
- location_value (location_value&& l)
+ location_value (location_value&& l) noexcept
: location (l.line, l.column),
file (std::move (l.file))
{
@@ -58,7 +58,7 @@ namespace build2
}
inline location_value& location_value::
- operator= (location_value&& l)
+ operator= (location_value&& l) noexcept
{
if (this != &l)
{