[boost][range] - removed warnings found building with clang 3.2.

[SVN r85698]
This commit is contained in:
Neil Groves
2013-09-16 11:21:36 +00:00
committed by Nathan Ridge
parent a8084dcb12
commit 01b4147e09
7 changed files with 14 additions and 5 deletions

View File

@ -41,6 +41,8 @@ namespace boost
iterator_t reference_it
= std::transform(cont.begin(), cont.end(), reference.begin(), fn);
boost::ignore_unused_variable_warning(reference_it);
iterator_t test_it
= boost::transform(cont, target.begin(), fn);
@ -101,6 +103,8 @@ namespace boost
iterator_t reference_it
= std::transform(cont1.begin(), cont1.end(),
cont2.begin(), reference.begin(), fn);
boost::ignore_unused_variable_warning(reference_it);
iterator_t test_it
= boost::transform(cont1, cont2, target.begin(), fn);