From 62ecaf002d2f80bd64cba3f8cebf4a21e85c13e6 Mon Sep 17 00:00:00 2001 From: Amber Ehrlich Date: Thu, 11 Jul 2024 11:50:57 -0400 Subject: [PATCH] fix(coro): fix unused alias warning --- include/dpp/coro/awaitable.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/dpp/coro/awaitable.h b/include/dpp/coro/awaitable.h index d4b1f22750..baf573e9e5 100644 --- a/include/dpp/coro/awaitable.h +++ b/include/dpp/coro/awaitable.h @@ -116,7 +116,6 @@ class basic_awaitable { template auto sync_wait_impl(auto&& do_wait) { using result_type = decltype(detail::co_await_resolve(std::declval()).await_resume()); - using storage_type = std::conditional_t, detail::promise::empty, result_type>; using variant_type = detail::promise::result_t; variant_type result; std::condition_variable cv;