Ignore warnings for boost beast

This commit is contained in:
badaix 2022-12-29 11:49:23 +01:00
parent 853c3f622f
commit ae035f5df9
3 changed files with 17 additions and 5 deletions

View file

@ -19,9 +19,18 @@
#ifndef STREAM_SESSION_WS_HPP
#define STREAM_SESSION_WS_HPP
// local headers
#include "stream_session.hpp"
// 3rd party headers
#include <boost/asio/strand.hpp>
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-copy-with-user-provided-copy"
#include <boost/beast/core.hpp>
#pragma GCC diagnostic pop
#include <boost/beast/websocket.hpp>
// standard headers
#include <deque>
namespace beast = boost::beast; // from <boost/beast.hpp>