Skip to content
Permalink
Browse files
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()");"
  • Loading branch information
heirecka authored and grooverdan committed Jan 25, 2023
1 parent de4030e commit 15226a2
Showing 1 changed file with 1 addition and 0 deletions.
@@ -24,6 +24,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 - 1301 USA*/
#include <vector>
#include <thread>
#include <mutex>
#include <stdexcept>

namespace
{

0 comments on commit 15226a2

Please sign in to comment.