From f6afca0da2fd7de1c75507df92f16afbe4fbe4a9 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 20 Nov 2008 16:55:12 +0000 Subject: [PATCH] Fix typos in docs and regenerate. [SVN r49850] --- doc/html/boost_config/acknowledgements.html | 8 +-- .../boost_config/boost_macro_reference.html | 56 +++++++++---------- .../guidelines_for_boost_authors.html | 14 ++--- doc/html/boost_config/rationale.html | 10 ++-- doc/html/index.html | 40 ++++++------- doc/macro_reference.qbk | 5 +- 6 files changed, 67 insertions(+), 66 deletions(-) diff --git a/doc/html/boost_config/acknowledgements.html b/doc/html/boost_config/acknowledgements.html index b2104e94..a1c5517b 100644 --- a/doc/html/boost_config/acknowledgements.html +++ b/doc/html/boost_config/acknowledgements.html @@ -3,8 +3,8 @@ Acknowledgements - - + + @@ -23,14 +23,14 @@

Beman Dawes provided the original config.hpp and part of this document.

- Vesa Karvonen provided a description of the principles (see rationale) + Vesa Karvonen provided a description of the principles (see rationale) and put together an early version of the current configuration setup.

diff --git a/doc/html/boost_config/boost_macro_reference.html b/doc/html/boost_config/boost_macro_reference.html index eed14728..4fef764e 100644 --- a/doc/html/boost_config/boost_macro_reference.html +++ b/doc/html/boost_config/boost_macro_reference.html @@ -3,8 +3,8 @@ Boost Macro Reference - - + + @@ -24,7 +24,7 @@

Macros @@ -46,7 +46,7 @@

@@ -1258,7 +1258,7 @@

@@ -2218,7 +2218,6 @@ - @@ -2231,7 +2230,6 @@ Description

-  @@ -2245,7 +2243,6 @@ The compiler does not support type char16_t.

-  @@ -2258,7 +2255,6 @@ The compiler does not support type char32_t.

-  @@ -2271,7 +2267,6 @@ The compiler does not support constexpr.

-  @@ -2284,7 +2279,6 @@ The compiler does not support decltype.

-  @@ -2295,7 +2289,14 @@

The compiler does not support defaulted (= - default) functions. [[BOOST_NO_DELETED_FUNCTIONS + default) functions. +

+ + + + +

+ BOOST_NO_DELETED_FUNCTIONS

@@ -2317,7 +2318,6 @@ T()).

-  @@ -2331,7 +2331,6 @@ for templates (explicit template).

-  @@ -2345,7 +2344,6 @@ long.

-  @@ -2358,7 +2356,6 @@ The compiler does not support raw string literals.

-  @@ -2371,7 +2368,6 @@ The compiler does not support r-value references.

-  @@ -2384,7 +2380,6 @@ The compiler does not support scoped enumerations (enum class).

-  @@ -2397,7 +2392,6 @@ The compiler does not support static_assert.

-  @@ -2408,8 +2402,14 @@

The compiler does not support Unicode (u8, - u, U#) literals. - ]] [[BOOST_NO_VARIADIC_TEMPLATES` + u, U) literals. +

+ + + + +

+ BOOST_NO_VARIADIC_TEMPLATES

@@ -2425,7 +2425,7 @@

@@ -2718,7 +2718,7 @@

@@ -2957,7 +2957,7 @@

@@ -2974,7 +2974,7 @@

@@ -3032,7 +3032,7 @@

diff --git a/doc/html/boost_config/guidelines_for_boost_authors.html b/doc/html/boost_config/guidelines_for_boost_authors.html index b2297d96..17a76c72 100644 --- a/doc/html/boost_config/guidelines_for_boost_authors.html +++ b/doc/html/boost_config/guidelines_for_boost_authors.html @@ -3,8 +3,8 @@ Guidelines for Boost Authors - - + + @@ -24,7 +24,7 @@

@@ -105,7 +105,7 @@

@@ -184,7 +184,7 @@

@@ -283,7 +283,7 @@

diff --git a/doc/html/boost_config/rationale.html b/doc/html/boost_config/rationale.html index 499cac66..fe45071e 100644 --- a/doc/html/boost_config/rationale.html +++ b/doc/html/boost_config/rationale.html @@ -3,8 +3,8 @@ Rationale - - + + @@ -24,7 +24,7 @@

The problem
@@ -41,7 +41,7 @@

Consider a situation in which you are concurrently developing on multiple @@ -104,7 +104,7 @@

The approach taken by boost's configuration headers is to separate configuration diff --git a/doc/html/index.html b/doc/html/index.html index 71219b45..7dac8d1b 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -3,8 +3,8 @@ Boost.Config - - + + @@ -28,7 +28,7 @@

-

+

Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

@@ -94,7 +94,7 @@
@@ -113,7 +113,7 @@

@@ -152,10 +152,10 @@ them usable by both Boost library and user code.

- Boost informational or helper + Boost informational or helper macros are designed for use by Boost users as well as for our own internal - use. Note however, that the feature test - and defect test macros were designed + use. Note however, that the feature test + and defect test macros were designed for internal use by Boost libraries, not user code, so they can change at any time (though no gratuitous changes are made to them). Boost library problems resulting from changes to the configuration macros are caught by the Boost @@ -170,7 +170,7 @@

@@ -320,7 +320,7 @@

@@ -684,7 +684,7 @@

@@ -709,13 +709,13 @@

Next the compiler, standard library, and platform configuration files are included. These are included via macros (BOOST_COMPILER_CONFIG - etc, see user settable macros), + etc, see user settable macros), and if the corresponding macro is undefined then a separate header that detects which compiler/standard library/platform is in use is included in order to set these. The config can be told to ignore these headers altogether if the corresponding BOOST_NO_XXX macro is set (for example BOOST_NO_COMPILER_CONFIG - to disable including any compiler configuration file - see + to disable including any compiler configuration file - see user settable macros).

@@ -728,7 +728,7 @@

If you are working on a unix-like platform then you can use the configure script to generate a "frozen" configuration based on your current - compiler setup - see using the configure + compiler setup - see using the configure script for more details.

- +

Last revised: October 27, 2008 at 16:15:55 GMT

Last revised: November 20, 2008 at 16:52:46 GMT


diff --git a/doc/macro_reference.qbk b/doc/macro_reference.qbk index 90b6659c..a66b9b15 100644 --- a/doc/macro_reference.qbk +++ b/doc/macro_reference.qbk @@ -537,7 +537,8 @@ type `char32_t`. `decltype`. ]] [[`BOOST_NO_DEFAULTED_FUNCTIONS`][The compiler does not support -defaulted (`= default`) functions. +defaulted (`= default`) functions. +]] [[`BOOST_NO_DELETED_FUNCTIONS`][The compiler does not support deleted (`= delete`) functions. ]] @@ -562,7 +563,7 @@ scoped enumerations (`enum class`). `static_assert`. ]] [[`BOOST_NO_UNICODE_LITERALS`][The compiler does not support -Unicode (`u8`, `u`, `U') literals. +Unicode (`u8`, `u`, `U`) literals. ]] [[`BOOST_NO_VARIADIC_TEMPLATES`][The compiler does not support variadic templates.