0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 19:28:52 +02:00

ircd::asio: Suppress warnings out of boost headers.

This commit is contained in:
Jason Volk 2023-01-15 20:31:34 -08:00
parent f8538d3c5b
commit bb6cacb94b

View file

@ -87,11 +87,14 @@ namespace boost
#else
#pragma GCC visibility push(default)
#endif
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wnull-dereference"
#include <boost/asio.hpp>
#include <boost/asio/io_service.hpp>
#include <boost/asio/steady_timer.hpp>
#include <boost/asio/spawn.hpp>
#include <boost/asio/ssl.hpp>
#pragma GCC diagnostic pop
#pragma GCC visibility pop
// Template-specializations for some functions we may redefine (interpose).