Merge warning fixes from Trunk.

[SVN r58217]
This commit is contained in:
John Maddock
2009-12-07 13:23:38 +00:00
parent 23d7abde22
commit 12f96b5653
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
#include <boost/type_traits.hpp>
template <class RandomAccessIterator >
RandomAccessIterator foo(RandomAccessIterator from, RandomAccessIterator to)
RandomAccessIterator foo(RandomAccessIterator from, RandomAccessIterator /*to*/)
{
// this template can only be used with
// random access iterators...

View File

@ -5,7 +5,7 @@
// See http://www.boost.org for most recent version including documentation.
#include <climits>
#include <limits>
#include <boost/limits.hpp>
#include <boost/static_assert.hpp>