From Jason Turner

[diff.cpp14.library]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp1bfqpk09/{from.md → to.md} +15 -8
tmp/tmp1bfqpk09/{from.md → to.md} RENAMED
@@ -1,10 +1,17 @@
1
- ### Clause [[library]]: library introduction <a id="diff.cpp14.library">[[diff.cpp14.library]]</a>
2
 
3
- [[namespace.future]] **Change:** New reserved namespaces. **Rationale:**
4
- Reserve namespaces for future revisions of the standard library that
5
- might otherwise be incompatible with existing programs. **Effect on
6
- original feature:** The global namespaces `std` followed by an arbitrary
7
- sequence of digits is reserved for future standardization. Valid
8
- C++14code that uses such a top-level namespace, e.g., `std2`, may be
9
- invalid in this International Standard.
 
 
 
 
 
 
 
10
 
 
1
+ ### [[library]]: library introduction <a id="diff.cpp14.library">[[diff.cpp14.library]]</a>
2
 
3
+ **Change:** New headers. **Rationale:** New functionality. **Effect on
4
+ original feature:** The following C++ headers are new: `<any>`,
5
+ `<charconv>`, `<execution>`, `<filesystem>`, `<memory_resource>`,
6
+ `<optional>`,
7
+ `<string_view>`, and `<variant>`. Valid C++14 code that `#include`s
8
+ headers with these names may be invalid in this International Standard.
9
+
10
+ **Change:** New reserved namespaces. **Rationale:** Reserve namespaces
11
+ for future revisions of the standard library that might otherwise be
12
+ incompatible with existing programs. **Effect on original feature:** The
13
+ global namespaces `std` followed by an arbitrary sequence of *digit*s
14
+ [[lex.name]] are reserved for future standardization. Valid C++14 code
15
+ that uses such a top-level namespace, e.g., `std2`, may be invalid in
16
+ this International Standard.
17