Files
scylladb/utils
Botond Dénes 7a75862570 utils/exceptions: add maybe_rethrow_exception()
Helps with the common coroutine exception-handling idiom:

    std::exception_ptr ex;
    try {
        ...
    } catch (...) {
        ex = std::current_exception();
    }

    // release resource(s)
    maybe_rethrow_exception(std::move(ex));

    return result;
2022-03-15 14:42:45 +02:00
..
2017-04-17 23:03:15 +03:00
2022-02-28 12:36:03 +02:00
2022-02-28 12:52:47 +02:00
2022-02-22 16:08:52 +01:00