pdfium/.clang-format
Victor Hugo Vianna Silva 58a1b4ad23 Clarify C++ standard in .clang-format
"Cpp11" is not C++11, it's the same as "Latest".
d4c0c7b38f/clang/lib/Format/Format.cpp (L546-L547)

Change-Id: I4860f4908a59b651b10e2fd3835e24f9ca72a232
Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/147250
Commit-Queue: Lei Zhang <thestig@chromium.org>
Auto-Submit: Victor Vianna <victorvianna@google.com>
Reviewed-by: Lei Zhang <thestig@chromium.org>
2026-05-06 09:31:19 -07:00

11 lines
441 B
YAML

# Defines the Chromium style for automatic reformatting.
# http://clang.llvm.org/docs/ClangFormatStyleOptions.html
BasedOnStyle: Chromium
# This defaults to 'Auto'. Explicitly set it for a while, so that
# 'vector<vector<int> >' in existing files gets formatted to
# 'vector<vector<int>>'. ('Auto' means that clang-format will only use
# 'int>>' if the file already contains at least one such instance.)
Standard: Latest
InsertBraces: true