[SVN r61792]
This commit is contained in:
John Maddock
2010-05-05 18:01:42 +00:00
parent 84e49b5e52
commit 94713abf79

View File

@@ -14,8 +14,8 @@ namespace boost_no_raw_literals {
int test() int test()
{ {
const char* s = R"[abc]"; const char* s = R"(abc)";
const wchar_t* ws = LR"[abc]"; const wchar_t* ws = LR"(abc)";
return 0; return 0;
} }