From 708f731fd18719b3c96c0536b6514fb2342aadf8 Mon Sep 17 00:00:00 2001 From: sakal Date: Mon, 27 Mar 2017 04:35:05 -0700 Subject: [PATCH] Update clang-format to use Google style guide for ObjC. We are using Google style guide for ObjC code. Clang-format now allows us to differentiate between C++ and ObjC code. With this change it now uses Google style guide with ColumnLimit of 100 for ObjC code. NOTRY=True BUG=webrtc:7406 Review-Url: https://codereview.webrtc.org/2775613002 Cr-Commit-Position: refs/heads/master@{#17387} --- .clang-format | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.clang-format b/.clang-format index 59d487051f..18b873c5bb 100644 --- a/.clang-format +++ b/.clang-format @@ -4,3 +4,7 @@ BasedOnStyle: Chromium --- Language: Java BasedOnStyle: Google +--- +Language: ObjC +ColumnLimit: 100 +BasedOnStyle: Google