diff options
author | Sam McCall <sam.mccall@gmail.com> | 2019-10-04 09:52:54 +0000 |
---|---|---|
committer | Sam McCall <sam.mccall@gmail.com> | 2019-10-04 09:52:54 +0000 |
commit | b3cc321cb2ee851f5d9ca7a65977e8c6a55a1f3d (patch) | |
tree | 03e54230d206f325a50bcce8134d32523499503e | |
parent | 91ad5398d15413e1d68bbe4aebe298732d737589 (diff) | |
download | bcm5719-llvm-b3cc321cb2ee851f5d9ca7a65977e8c6a55a1f3d.tar.gz bcm5719-llvm-b3cc321cb2ee851f5d9ca7a65977e8c6a55a1f3d.zip |
[Format] Fix docs after r373439
llvm-svn: 373724
-rw-r--r-- | clang/docs/ClangFormatStyleOptions.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/docs/ClangFormatStyleOptions.rst b/clang/docs/ClangFormatStyleOptions.rst index c7f47c5c021..24ad1f67f08 100644 --- a/clang/docs/ClangFormatStyleOptions.rst +++ b/clang/docs/ClangFormatStyleOptions.rst @@ -2310,11 +2310,12 @@ the configuration (without a prefix: ``Auto``). std::unique_ptr<int[]> foo() {} // Won't be affected **Standard** (``LanguageStandard``) + Parse and format C++ constructs compatible with this standard. + .. code-block:: c++ c++03: latest: vector<set<int> > x; vs. vector<set<int>> x; - Parse and format C++ constructs compatible with this standard. Possible values: |