[boost][range] - fix for ticket 6888 - unique predicate overloads

[SVN r85686]
This commit is contained in:
Neil Groves
2013-09-15 19:44:36 +00:00
committed by Nathan Ridge
parent fbc0057432
commit 3d3dea1411
7 changed files with 183 additions and 15 deletions

6
include/boost/range/config.hpp Executable file → Normal file
View 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