mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 13:27:33 +02:00
Suppress -Wself-move warnings
This commit is contained in:
committed by
Mohammad Nejati
parent
a11ea6bc72
commit
da4cdb8a1e
@ -22,6 +22,10 @@
|
|||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
#if defined(BOOST_GCC) && BOOST_GCC >= 130000
|
||||||
|
#pragma GCC diagnostic ignored "-Wself-move"
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace boost {
|
namespace boost {
|
||||||
namespace beast {
|
namespace beast {
|
||||||
|
|
||||||
|
@ -22,6 +22,10 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
|
||||||
|
#if defined(BOOST_GCC) && BOOST_GCC >= 130000
|
||||||
|
#pragma GCC diagnostic ignored "-Wself-move"
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace boost {
|
namespace boost {
|
||||||
namespace beast {
|
namespace beast {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user