aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/util.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libutil/util.hh')
-rw-r--r--src/libutil/util.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh
index 686e81d3f..07c3d28ff 100644
--- a/src/libutil/util.hh
+++ b/src/libutil/util.hh
@@ -460,7 +460,7 @@ public:
if (prev) done.test_and_set();
}
- void operator()(T && t)
+ void operator()(T && t) noexcept
{
auto prev = done.test_and_set();
assert(!prev);
@@ -469,7 +469,7 @@ public:
fun(promise.get_future());
}
- void rethrow(const std::exception_ptr & exc = std::current_exception())
+ void rethrow(const std::exception_ptr & exc = std::current_exception()) noexcept
{
auto prev = done.test_and_set();
assert(!prev);