From f4cd3a8c274c4ec432470aada45a542db1fdebd8 Mon Sep 17 00:00:00 2001
From: Chuck Atkins <chuck.atkins@kitware.com>
Date: Sat, 1 Apr 2017 20:34:51 -0400
Subject: [PATCH] Remove fixed size int test in clang-tidy.

The check is to use int64_t instead of long long.  At the moment it creates
a lot of noise.  Adjusting the code is a larger undertaking so I'm turning it
off for now.  Once the code is fixed for it then we'll turn it back on.
---
 .clang-tidy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.clang-tidy b/.clang-tidy
index 82297a484..de0e30acc 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -1,4 +1,4 @@
-Checks: -*,cppcoreguidelines-*,google-*,llvm-*,misc-*,modernize-*,performance-*,-cppcoreguidelines-pro-type-vararg,-cppcoreguidelines-pro-bounds-array-to-pointer-decay
+Checks: -*,cppcoreguidelines-*,google-*,llvm-*,misc-*,modernize-*,performance-*,-cppcoreguidelines-pro-type-vararg,-cppcoreguidelines-pro-bounds-array-to-pointer-decay,-google-runtime-int
 
 CheckOptions:
   - key: 	google-runtime-int.TypeSuffix
-- 
GitLab