mirror of
https://github.com/boostorg/function.git
synced 2025-07-04 00:06:31 +02:00
Additional Clang warning fixes
This commit is contained in:
@ -7,8 +7,10 @@
|
||||
|
||||
// For more information, see http://www.boost.org
|
||||
|
||||
#if defined(__clang__)
|
||||
# pragma clang diagnostic ignored "-Wself-assign-overloaded"
|
||||
#if defined(__clang__) && defined(__has_warning)
|
||||
# if __has_warning( "-Wself-assign-overloaded" )
|
||||
# pragma clang diagnostic ignored "-Wself-assign-overloaded"
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#include <boost/function.hpp>
|
||||
|
Reference in New Issue
Block a user