Fix bugprone-argument-comment bug if there are marcos.
For example:
#define X(x) (x) 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.