forked from boostorg/range
[boost][range] - fix for ticket 6888 - unique predicate overloads
[SVN r85686]
This commit is contained in:
committed by
Nathan Ridge
parent
fbc0057432
commit
3d3dea1411
6
include/boost/range/config.hpp
Executable file → Normal file
6
include/boost/range/config.hpp
Executable file → Normal file
@ -48,6 +48,12 @@
|
||||
#define BOOST_RANGE_ARRAY_REF() (&boost_range_array)
|
||||
#endif
|
||||
|
||||
#if defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)))
|
||||
# define BOOST_RANGE_UNUSED __attribute__((unused))
|
||||
#else
|
||||
# define BOOST_RANGE_UNUSED
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user