Fix inclusion of incorrect header.

Fixes #2537.

[SVN r50371]
This commit is contained in:
John Maddock
2008-12-23 12:03:43 +00:00
parent a9a9f0591b
commit 413e7eda07
2 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ Suppose we have a template-class that requires an unsigned integral type with
at least 16-bits of precision as a template argument, we can achieve this
using something like this:
#include <climits>
#include <limits>
#include <boost/static_assert.hpp>
template <class UnsignedInt>

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>