mirror of
https://github.com/boostorg/function.git
synced 2025-07-26 19:07:16 +02:00
More Clang warning suppression
This commit is contained in:
@ -8,6 +8,11 @@
|
||||
|
||||
// For more information, see http://www.boost.org/
|
||||
|
||||
#if defined(__clang__) && defined(__has_warning)
|
||||
# if __has_warning( "-Wdeprecated-declarations" )
|
||||
# pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#include <boost/function.hpp>
|
||||
#include <iostream>
|
||||
|
@ -8,6 +8,11 @@
|
||||
|
||||
// For more information, see http://www.boost.org/
|
||||
|
||||
#if defined(__clang__) && defined(__has_warning)
|
||||
# if __has_warning( "-Wdeprecated-declarations" )
|
||||
# pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#include <boost/function.hpp>
|
||||
#include <iostream>
|
||||
|
Reference in New Issue
Block a user