Skip to content

Commit e90fd50

Browse files
committed
corrected minimal asio version for deprecated functions
1 parent fb186e0 commit e90fd50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/crow/socket_adaptors.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#endif
1919
#include "crow/settings.h"
2020

21-
#if (CROW_USE_BOOST && BOOST_VERSION >= 107000) || (ASIO_VERSION >= 101300)
21+
#if (CROW_USE_BOOST && BOOST_VERSION >= 107000) || (ASIO_VERSION >= 101008)
2222
#define GET_IO_CONTEXT(s) ((asio::io_context&)(s).get_executor().context())
2323
#else
2424
#define GET_IO_CONTEXT(s) ((s).get_io_service())

0 commit comments

Comments
 (0)