Consistent title casing.

This commit is contained in:
Anthony Calandra
2020-02-01 18:03:31 -05:00
parent 6d90199ea9
commit c6734631fc
3 changed files with 6 additions and 6 deletions

View File

@@ -625,13 +625,13 @@ struct S {};
static_assert(isIntegral<S>() == false);
```
### UTF-8 Character Literals
### UTF-8 character literals
A character literal that begins with `u8` is a character literal of type `char`. The value of a UTF-8 character literal is equal to its ISO 10646 code point value.
```c++
char x = u8'x';
```
### Direct List Initialization of Enums
### Direct list initialization of enums
Enums can now be initialized using braced syntax.
```c++
enum byte : unsigned char {};
@@ -975,7 +975,7 @@ constexpr int factorial(int n) {
factorial(5); // == 120
```
### Variable Templates
### Variable templates
C++14 allows variables to be templated:
```c++