From 413e7eda07a4151057eff02b8b1ea3bbdbd368f0 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 23 Dec 2008 12:03:43 +0000 Subject: [PATCH] Fix inclusion of incorrect header. Fixes #2537. [SVN r50371] --- doc/static_assert.qbk | 2 +- static_assert_example_3.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/static_assert.qbk b/doc/static_assert.qbk index 6063a12..142cdbf 100644 --- a/doc/static_assert.qbk +++ b/doc/static_assert.qbk @@ -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 + #include #include template diff --git a/static_assert_example_3.cpp b/static_assert_example_3.cpp index e958131..1cc1545 100644 --- a/static_assert_example_3.cpp +++ b/static_assert_example_3.cpp @@ -5,7 +5,7 @@ // See http://www.boost.org for most recent version including documentation. -#include +#include #include #include