blob: 6fdf1dc888cb67d57d1a6bed866bbbff21e5eca7 [file] [log] [blame]
James Robinson646469d2014-10-03 15:33:28 -07001# Defines the Chromium style for automatic reformatting.
2# http://clang.llvm.org/docs/ClangFormatStyleOptions.html
3BasedOnStyle: Chromium
James Robinson74f9f1f2014-11-04 11:17:49 -08004# This defaults to 'Auto'. Explicitly set it for a while, so that
5# 'vector<vector<int> >' in existing files gets formatted to
6# 'vector<vector<int>>'. ('Auto' means that clang-format will only use
7# 'int>>' if the file already contains at least one such instance.)
James Robinson646469d2014-10-03 15:33:28 -07008Standard: Cpp11