diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-05-08 16:58:34 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-05-08 16:58:34 -0400 |
commit | bd8e1dd8d2340636521200d15a045321ea07b986 (patch) | |
tree | 8ff2fefc1ddefd9f4d7078b158dfabffb36b470f /indra/llcommon | |
parent | 5b3bdf839f590676c4db4fb7eddaa0a55ac0c26f (diff) |
Tweak a couple things
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/workqueue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/workqueue.h b/indra/llcommon/workqueue.h index b658966f63..ecc6f27223 100644 --- a/indra/llcommon/workqueue.h +++ b/indra/llcommon/workqueue.h @@ -541,7 +541,7 @@ namespace LL reply, // Bind the current exception to transport back to the // originating WorkQueue. Once there, rethrow it. - [exc = std::current_exception()](){ std::rethrow_exception(exc); }); + [exc = std::current_exception()]{ std::rethrow_exception(exc); }); } }, // if caller passed a TimePoint, pass it along to post() |