зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
60bb054c02
Коммит
be53fc59dd
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче