yuyawk
yuyawk
Hi. While I'm using `bazel_clang_tidy` at a01e5e262e6d604c21ed11c420a2a245397b995a, I noticed my C header with the extension ".h" is mistakenly recognized as C++. The cause of this issue is [this line](https://github.com/erenon/bazel_clang_tidy/blob/a01e5e262e6d604c21ed11c420a2a245397b995a/clang_tidy/clang_tidy.bzl#L208). When...
Resolves #4605 As elaborated in the issue, `GTEST_INTERNAL_HAVE_CPP_ATTRIBUTE(maybe_unused)` failing to consider the C++ standard can cause `-Wc++17-attribute-extensions` warning in C++14. This PR applies the patch equivalent to what the issue...