Skip to content

Commit 15226a2

Browse files
heireckagrooverdan
authored andcommitted
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()");"
1 parent de4030e commit 15226a2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tpool/aio_liburing.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 - 1301 USA*/
2424
#include <vector>
2525
#include <thread>
2626
#include <mutex>
27+
#include <stdexcept>
2728

2829
namespace
2930
{

0 commit comments

Comments
 (0)