Skip to content

Commit 4a3889c

Browse files
committed
fix changkun#63: fix string literal
1 parent dcd7199 commit 4a3889c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

book/zh-cn/09-others.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ C++11 提供了原始字符串字面量的写法,可以在一个字符串前
102102
#include <string>
103103

104104
int main() {
105-
std::string str = R"(C:\\What\\The\\Fxxk)";
106-
std::cout << str << std::endl;
107-
return 0;
105+
std::string str = R"(C:\What\The\Fxxk)";
106+
std::cout << str << std::endl;
107+
return 0;
108108
}
109109
```
110110

pdf/zh-cn/modern-cpp-tutorial.pdf

23 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)