<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/133618>133618</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
[clang-tidy][false-negative] `modernize-raw-string-literal` does not check function-like macro parameters
</td>
</tr>
<tr>
<th>Labels</th>
<td>
clang-tidy,
false-negative
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
tearfur
</td>
</tr>
</table>
<pre>
String literals that are passed in as parameters of a function-like macros are not caught by `modernize-raw-string-literal`. Checked the documentation for `modernize-raw-string-literal` and AFAICT there is no `IgnoreMacros` option or anything in that nature.
https://godbolt.org/z/edvqhdff4
```
<source>:11:18: warning: escaped string literal can be written as a raw string literal [modernize-raw-string-literal]
11 | std::cout << "\\\\127.0.0.1\\ADMIN$\\System32"sv << '\n';
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| R"(\\127.0.0.1\ADMIN$\System32)"sv
1 warning generated.
```
Current trunk: 9747bb182f430bb1bd3525b7f42e88df626e28e5
</pre>
<img width="1" height="1" alt="" src="http://email.email.llvm.org/o/eJyMVMGO4zYPfhr5QsSQKCuJDz54nA0wh_0P__YFJIu21XGkVJIzyB767IWdaWd2WrQrCJYFkB8_fhSpU3KjJ2qYemLqVOglTyE2mXQclliYYO_NtxydH2F2maKeE-RJZ9CR4KpTIgvOg05w1VFfKFNMEAbQMCy-zy743exeCC66jyFtXj5k6PUyThnMHdieX4Kl6N132kX9uktbtN1bNLbnJXQT9S9kIU8ENvTLhXzWKzYMIf4EAmhvoT23z90vK0YkcAl8WD2fRx8ifd3YrZbhuuGGCNrf87Tm7fwjY6_zEqlkvGW8nXK-JiZbhmeG5zFYE-ZchjgyPH9neCZ7-22yw1A9zNmev23eMtmlsMSemPzCZCvE-jky2cKrjt75cf2l1OsrWUg_aA-99mAIXqPLmTbZNUT9-tmMqad_lUSdGG8BQAhghw7WlbJd05FtH5YMTHZMdsAQmer-2gIPJS95KR7X9vT1-X8Mq8ft2z1lukhkiOn2DnBgqvPrIZ8eMQG2mEx9-f0_1w8e_1_Z4PHvVD7weCdRbzwYb8WfssJInqLOZMvPFeFtt8RIPkOOi39ZC1AfqoMx4ohDJbkxwlipUJnDUCEdj3bY457wSKqwjbS1rHVBjThUUgoURyymhpteaV0JgX191JZr3quhRtobNHJPVeEa5Ki4lJwrlFyUfV1xrIVUwuwPBmtWcbpoN5fzfLusb6twKS3UCCn34ljM2tCctsZF7Gftx1129r6p1DHEQc-Jdp5Gnd2NtlKeitisYDuzjIlVfHYpp3f47PK8TYIPaOrE1NMnKHX6maazgdKj2df2_ad58GFmFEucm09N5fK0mLIPF4bnlePbsbvG8Cv1meF50yMxPL9JcmvwjwAAAP__UrmGhQ">