mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-04 20:01:44 +02:00
Ignore warnings for boost beast
This commit is contained in:
parent
853c3f622f
commit
ae035f5df9
3 changed files with 17 additions and 5 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue