This commit:
- Sorts the #include directives: The #includes of the ""-form come
first, those of the <>-form come later (this helps checking if any
include file is not self-sufficient); in each of the two groups, the
names of the headers or source files are sorted alphabetically (this
eases searching for a specific #include and avoids duplicates).
- Uses the ""-form when including Boost files; using the <>-form is a
relic of the past. This was even discussed on the developers list many
years ago and led to core issue 370. Note that some parts of
DynamicBitset were already using the ""-form and that has never caused
any problem, AFAIK.
- Removes some comments attached to the directives themselves which
seemed pretty useless and prone to get out of sync.
Documentation:
--------------
* converted from HTML 4.01 Transitional to XHTML 1.1 (reason: the website
uses already XHTML 1.0 Strict, and our page didn't validate as such, even
though on the website a link to the W3C markup validation service is
affixed)
* removed some misleading sentences
* referenced the source files of examples, so that they do not go out of
sync again
* clarified rationale section
Example files:
--------------
* example 3 shows that stream extraction may expand the bitset
* minor improvements to all examples
[SVN r47389]