idea for language feature xref

This commit is contained in:
Bjarne Stroustrup 2017-04-17 12:24:28 -04:00
parent 1b5f6d0c97
commit c46bebc58f

View File

@ -66,7 +66,7 @@ or look at a specific language feature
* [`class`](#S-class) * [`class`](#S-class)
* [constructor](#SS-ctor) * [constructor](#SS-ctor)
* [derived `class`](#SS-hier) * [derived `class`](#SS-hier)
* [destructor](#SS-dtor) * destructor: [and constructors](#Rc-matched), [when needed?] (#Rc-dtor), [may not fail](#Rc-dtor-fail)
* [exception](#S-errors) * [exception](#S-errors)
* [`for`](#S-???) * [`for`](#S-???)
* [`inline`](#S-class) * [`inline`](#S-class)
@ -75,7 +75,7 @@ or look at a specific language feature
* [operator](#S-???) * [operator](#S-???)
* [`public`, `private`, and `protected`](#S-???) * [`public`, `private`, and `protected`](#S-???)
* [`static_assert`](#S-???) * [`static_assert`](#S-???)
* [`struct`](#S-class) * `struct`: is a class with members public by default, [use if no invariant](#Rc-struct), [no private members](#Rc-class)
* [`template`](#S-???) * [`template`](#S-???)
* [`unsigned`](#S-???) * [`unsigned`](#S-???)
* [`virtual`](#SS-hier) * [`virtual`](#SS-hier)
@ -3651,7 +3651,8 @@ Subsections:
##### Reason ##### Reason
Ease of comprehension. If data is related (for fundamental reasons), that fact should be reflected in code. Ease of comprehension.
If data is related (for fundamental reasons), that fact should be reflected in code.
##### Example ##### Example