fix #63: fix string literal

This commit is contained in:
Changkun Ou
2019-06-05 14:38:41 +02:00
parent dcd7199d73
commit 4a3889cfca
2 changed files with 3 additions and 3 deletions

View File

@@ -102,7 +102,7 @@ C++11 提供了原始字符串字面量的写法,可以在一个字符串前
#include <string>
int main() {
std::string str = R"(C:\\What\\The\\Fxxk)";
std::string str = R"(C:\What\The\Fxxk)";
std::cout << str << std::endl;
return 0;
}

Binary file not shown.