mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
SL.io.50: missing backticks (#1994)
This commit is contained in:
parent
016742b1c0
commit
cf3eacad1a
|
@ -20359,7 +20359,7 @@ For writing to a file, there is rarely a need to `flush`.
|
|||
For string streams (specifically `ostringstream`), the insertion of an `endl` is entirely equivalent
|
||||
to the insertion of a `'\n'` character, but also in this case, `endl` might be significantly slower.
|
||||
|
||||
`endl` does *not* take care of producing a platform specific end-of-line sequence (like "\r\n" on
|
||||
`endl` does *not* take care of producing a platform specific end-of-line sequence (like `"\r\n"` on
|
||||
Windows). So for a string stream, `s << endl` just inserts a *single* character, `'\n'`.
|
||||
|
||||
##### Note
|
||||
|
|
Loading…
Reference in New Issue
Block a user