Bug 1317954 - Replace string literals containing escaped characters with raw string literals in xpcom/. r=froydnj

MozReview-Commit-ID: INLv2bNrLYX

--HG--
extra : rebase_source : 99d516e153b2dcb5185b30ee6072c4e6575517b7
This commit is contained in:
Andi-Bogdan Postelnicu 2016-11-16 14:26:03 +02:00
Родитель 60bb054c02
Коммит be53fc59dd
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -18,7 +18,7 @@ int main(int argc, char* argv[]) {
return 6;
if (strcmp("argument with spaces", argv[7]) != 0)
return 7;
if (strcmp("\"argument with quotes\"", argv[8]) != 0)
if (strcmp(R"("argument with quotes")", argv[8]) != 0)
return 8;
return 0;