Ticket #11740: decription with formatting.txt

File decription with formatting.txt, 292 bytes (added by steweg@…, 7 years ago)

Descirption (again) with correct formatting

Line 
1boost::string_ref something;
2something = "temp"; // works ok
3something = std::string("temp"); //doesn't work corretly
4
5while it should not be a should only be:
6boost::string_ref something;
7something = "temp"; // works ok
8std::string tempStr("temp");
9something = tempStr; // works ok