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}
This commit is contained in:
sakal
2017-03-27 04:35:05 -07:00
committed by Commit bot
parent 1ccf73f830
commit 708f731fd1

View File

@ -4,3 +4,7 @@ BasedOnStyle: Chromium
--- ---
Language: Java Language: Java
BasedOnStyle: Google BasedOnStyle: Google
---
Language: ObjC
ColumnLimit: 100
BasedOnStyle: Google