Cleaned up docs

This commit is contained in:
Andrzej Krzemienski
2014-06-06 00:53:15 +02:00
parent 402f15e996
commit dec71d338d
28 changed files with 611 additions and 842 deletions

View File

@ -45,7 +45,7 @@ Distributed under the Boost Software License, Version 1.0.
[def __GO_TO__ [$images/callouts/R.png]]
[heading Introduction]
[section Introduction]
Class template `optional` is a wrapper for representing 'optional' (or 'nullable') objects who may not (yet) contain a valid value. Optional objects offer full value semantics; they are good for passing by value and usage inside STL containers. This is a header-only library.
[heading Problem]
@ -67,7 +67,7 @@ This is how you solve it with `boost::optional`:
runWithNoMax();
}
[endsect]
[include 01_quick_start.qbk]
[section Tutorial]