remove redundant comments from generated C++ files. clean up with clang-format.

This commit is contained in:
Axel Kohlmeyer
2022-12-28 16:31:50 -05:00
parent f157ba2389
commit 57713cf9a3
211 changed files with 6255 additions and 54891 deletions

View File

@ -7,11 +7,11 @@ extern "C" {
logical lsame_(const char *a, const char *b)
{
char ua, ub;
if (!a || !b) return FALSE_;
char ua, ub;
if (!a || !b) return FALSE_;
ua = toupper(*a);
ub = toupper(*b);
return (ua == ub) ? TRUE_ : FALSE_;
ua = toupper(*a);
ub = toupper(*b);
return (ua == ub) ? TRUE_ : FALSE_;
}
}