From 5da522ec4553ff512f9b237152c92354343ae6db Mon Sep 17 00:00:00 2001 From: Josh Gao Date: Thu, 18 Feb 2016 14:52:07 -0800 Subject: [PATCH] adb: fix clang-format for access modifier dedent. It was previously -1 (the default from Google style, since it uses 2 space indentation), instead of -2. Change-Id: I1865505ce17a2cc13b85de58bda55c3b1dfcf08c --- adb/.clang-format | 1 + 1 file changed, 1 insertion(+) diff --git a/adb/.clang-format b/adb/.clang-format index 673753525..fc4eb1bc0 100644 --- a/adb/.clang-format +++ b/adb/.clang-format @@ -2,6 +2,7 @@ BasedOnStyle: Google AllowShortBlocksOnASingleLine: false AllowShortFunctionsOnASingleLine: false +AccessModifierOffset: -2 ColumnLimit: 100 CommentPragmas: NOLINT:.* DerivePointerAlignment: false