mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +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 <vector>
|
||||
|
||||
#if defined(BOOST_GCC) && BOOST_GCC >= 130000
|
||||
#pragma GCC diagnostic ignored "-Wself-move"
|
||||
#endif
|
||||
|
||||
namespace boost {
|
||||
namespace beast {
|
||||
|
||||
|
@ -22,6 +22,10 @@
|
||||
#include <string>
|
||||
#include <type_traits>
|
||||
|
||||
#if defined(BOOST_GCC) && BOOST_GCC >= 130000
|
||||
#pragma GCC diagnostic ignored "-Wself-move"
|
||||
#endif
|
||||
|
||||
namespace boost {
|
||||
namespace beast {
|
||||
|
||||
|
Reference in New Issue
Block a user