From 15226a2822a84d4ca56c99f236670f0e28ca1e5f Mon Sep 17 00:00:00 2001 From: Heiko Becker Date: Tue, 24 Jan 2023 16:29:17 +0100 Subject: Add missing include for std::runtime_error Fixes the following error when building with gcc 13: "tpool/aio_liburing.cc:64:18: error: 'runtime_error' is not a member of 'std' 64 | throw std::runtime_error("aio_uring()");" --- tpool/aio_liburing.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'tpool') diff --git a/tpool/aio_liburing.cc b/tpool/aio_liburing.cc index 6eff6c313a3..447c2335c74 100644 --- a/tpool/aio_liburing.cc +++ b/tpool/aio_liburing.cc @@ -24,6 +24,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 - 1301 USA*/ #include #include #include +#include namespace { -- cgit v1.2.1