Fix Markdown rendering failure

Use of <iostream> without backticks causes the Markdown render to fail
from this point onwards on GitHub pages.
This commit is contained in:
Abigail 2017-06-03 07:47:06 +01:00 committed by GitHub
parent 4359ca5ae5
commit 11e92eb4c5

View File

@ -18089,7 +18089,7 @@ Avoid accidentally becoming dependent on implementation details and logically se
} }
} }
<iostream> exposes the definition of `std::string` ("why?" makes for a fun trivia question), `<iostream>` exposes the definition of `std::string` ("why?" makes for a fun trivia question),
but it is not required to do so by transitively including the entire `<string>` header, but it is not required to do so by transitively including the entire `<string>` header,
resulting in the popular beginner question "why doesn't `getline(cin,s);` work?" resulting in the popular beginner question "why doesn't `getline(cin,s);` work?"
or even an occasional "`string`s cannot be compared with `==`). or even an occasional "`string`s cannot be compared with `==`).