From 7a564b222d8aa7a3ab1a29d10693eea0c85bf0b5 Mon Sep 17 00:00:00 2001 From: Oxan van Leeuwen Date: Sun, 28 Nov 2021 19:59:30 +0100 Subject: [PATCH] Make clang-tidy suggest stdint.h int types (#2820) --- .clang-tidy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index 79276f81c3..1c7e65b762 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -101,6 +101,8 @@ CheckOptions: value: '10' - key: google-readability-namespace-comments.SpacesBeforeComments value: '2' + - key: google-runtime-int.TypeSuffix + value: '_t' - key: modernize-loop-convert.MaxCopySize value: '16' - key: modernize-loop-convert.MinConfidence