disable lint check where we know it'd fail (#1286)

* disable lint check where we know it'd fail

one less noisy presubmit

* clang format

* remove ws
This commit is contained in:
Vy Nguyen 2021-11-17 12:57:36 -05:00 committed by GitHub
parent b5bb9f0675
commit 8722d6f014
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,8 @@ inline std::string StrCat(Args&&... args) {
std::vector<std::string> StrSplit(const std::string& str, char delim);
// Disable lint checking for this block since it re-implements C functions.
// NOLINTBEGIN
#ifdef BENCHMARK_STL_ANDROID_GNUSTL
/*
* GNU STL in Android NDK lacks support for some C++11 functions, including
@ -56,6 +58,7 @@ using std::stod;
using std::stoi;
using std::stoul;
#endif
// NOLINTEND
} // end namespace benchmark