Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions include/boost/bind/arg.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@
#include <boost/config.hpp>
#include <boost/is_placeholder.hpp>

#if BOOST_GCC >= 40700
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-local-typedefs"
#endif

namespace boost
{

Expand Down Expand Up @@ -57,4 +62,9 @@ template< int I > struct is_placeholder< arg<I> (*) () >

} // namespace boost

#if BOOST_GCC >= 40700
#pragma GCC diagnostic pop
#endif


#endif // #ifndef BOOST_BIND_ARG_HPP_INCLUDED