mirror of
https://github.com/zebrajr/server.git
synced 2025-12-06 12:20:40 +01:00
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()");"
This commit is contained in:
parent
de4030e4d4
commit
15226a2822
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user