From Jason Turner

[contents]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp2nfbnf6c/{from.md → to.md} +11 -10
tmp/tmp2nfbnf6c/{from.md → to.md} RENAMED
@@ -1,17 +1,18 @@
1
  #### Library contents <a id="contents">[[contents]]</a>
2
 
3
- The C++standard library provides definitions for the following types of
4
- entities: macros, values, types, templates, classes, functions, objects.
 
5
 
6
- All library entities except macros, `operator new` and `operator delete`
7
- are defined within the namespace `std` or namespaces nested within
8
- namespace `std`.[^14] It is unspecified whether names declared in a
9
- specific namespace are declared directly in that namespace or in an
10
- inline namespace inside that namespace.[^15]
11
 
12
  Whenever a name `x` defined in the standard library is mentioned, the
13
  name `x` is assumed to be fully qualified as `::std::x`, unless
14
- explicitly described otherwise. For example, if the Effects section for
15
- library function `F` is described as calling library function `G`, the
16
- function `::std::G` is meant.
17
 
 
1
  #### Library contents <a id="contents">[[contents]]</a>
2
 
3
+ The C++standard library provides definitions for the entities and macros
4
+ described in the synopses of the C++standard library headers (
5
+ [[headers]]).
6
 
7
+ All library entities except `operator new` and `operator delete` are
8
+ defined within the namespace `std` or namespaces nested within namespace
9
+ `std`.[^12] It is unspecified whether names declared in a specific
10
+ namespace are declared directly in that namespace or in an inline
11
+ namespace inside that namespace.[^13]
12
 
13
  Whenever a name `x` defined in the standard library is mentioned, the
14
  name `x` is assumed to be fully qualified as `::std::x`, unless
15
+ explicitly described otherwise. For example, if the *Effects:* section
16
+ for library function `F` is described as calling library function `G`,
17
+ the function `::std::G` is meant.
18