diff options
author | Alexander Kornienko <alexfh@google.com> | 2019-09-04 16:19:32 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2019-09-04 16:19:32 +0000 |
commit | 240a2e25c6ded8b68b33751286180de7b242bf42 (patch) | |
tree | c402dfb692163ee55a9cfbb23029cd816e33ce04 /lldb/packages/Python/lldbsuite/test/python_api/thread/main2.cpp | |
parent | 80913a70f5492bd42732ab7c98564d2590820cfd (diff) | |
download | bcm5719-llvm-240a2e25c6ded8b68b33751286180de7b242bf42.tar.gz bcm5719-llvm-240a2e25c6ded8b68b33751286180de7b242bf42.zip |
[clang-tidy] Fix bugprone-argument-comment bug if there are marcos.
Summary:
Fix bugprone-argument-comment bug if there are marcos.
For example:
```
void j(int a, int b, int c);
j(X(1), /*b=*/1, X(1));
```
clang-tidy can't recognize comment "/*b=*/". It suggests fix like this:
```
j(X(1), /*b=*//*b=*/1, X(1));
```
This change tries to fix this issue.
Reviewers: alexfh, hokein, aaron.ballman
Reviewed By: alexfh
Subscribers: xazax.hun, cfe-commits
Tags: #clang, #clang-tools-extra
Patch by Yubo Xie.
Differential Revision: https://reviews.llvm.org/D67080
llvm-svn: 370919
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api/thread/main2.cpp')
0 files changed, 0 insertions, 0 deletions