Skip to content

Commit 16165f1

Browse files
authored
Update numeric-boolean-and-pointer-literals-cpp.md
1 parent 6de0edc commit 16165f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/cpp/numeric-boolean-and-pointer-literals-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ auto val_4 = 0x8000000000000000ULL << 16; // unsigned long long
6363
**Digit separators**: You can use the single-quote character (apostrophe) to separate place values in larger numbers to make them easier for humans to read. Separators have no effect on compilation.
6464

6565
```cpp
66-
long long i = 24'847'458'121
66+
long long i = 24'847'458'121;
6767
```
6868

6969
## Floating point literals

0 commit comments

Comments
 (0)