[clang] 1cd4346 - [clang-format][docs] Fix incorrect 'clang-format 11' option markers
via cfe-commits
cfe-commits at lists.llvm.org
Wed Apr 6 18:38:38 PDT 2022
Author: Krystian Kuzniarek
Date: 2022-04-06T18:38:30-07:00
New Revision: 1cd43464091c4e177c87b1c03c1db906ecd88d4f
URL: https://github.com/llvm/llvm-project/commit/1cd43464091c4e177c87b1c03c1db906ecd88d4f
DIFF: https://github.com/llvm/llvm-project/commit/1cd43464091c4e177c87b1c03c1db906ecd88d4f.diff
LOG: [clang-format][docs] Fix incorrect 'clang-format 11' option markers
Differential Revision: https://reviews.llvm.org/D122064
Added:
Modified:
clang/docs/ClangFormatStyleOptions.rst
clang/include/clang/Format/Format.h
Removed:
################################################################################
diff --git a/clang/docs/ClangFormatStyleOptions.rst b/clang/docs/ClangFormatStyleOptions.rst
index 543e7bbf410a3..46471271299bf 100644
--- a/clang/docs/ClangFormatStyleOptions.rst
+++ b/clang/docs/ClangFormatStyleOptions.rst
@@ -894,7 +894,7 @@ the configuration (without a prefix: ``Auto``).
int d,
int e);
-**AllowShortBlocksOnASingleLine** (``ShortBlockStyle``) :versionbadge:`clang-format 11`
+**AllowShortBlocksOnASingleLine** (``ShortBlockStyle``) :versionbadge:`clang-format 3.5`
Dependent on the value, ``while (true) { continue; }`` can be put on a
single line.
@@ -1658,6 +1658,7 @@ the configuration (without a prefix: ``Auto``).
.. code-block:: c++
+ false: true:
int f() vs. int f()
{} {
}
@@ -1669,6 +1670,7 @@ the configuration (without a prefix: ``Auto``).
.. code-block:: c++
+ false: true:
class Foo vs. class Foo
{} {
}
@@ -1680,6 +1682,7 @@ the configuration (without a prefix: ``Auto``).
.. code-block:: c++
+ false: true:
namespace Foo vs. namespace Foo
{} {
}
@@ -2418,7 +2421,7 @@ the configuration (without a prefix: ``Auto``).
f(MyMap[{composite, key}]); f(MyMap[{ composite, key }]);
new int[3]{1, 2, 3}; new int[3]{ 1, 2, 3 };
-**DeriveLineEnding** (``Boolean``) :versionbadge:`clang-format 11`
+**DeriveLineEnding** (``Boolean``) :versionbadge:`clang-format 10`
Analyze the formatted file for the most used line ending (``\r\n``
or ``\n``). ``UseCRLF`` is only used as a fallback if none can be derived.
@@ -4295,7 +4298,7 @@ the configuration (without a prefix: ``Auto``).
true: false:
for (auto v : values) {} vs. for(auto v: values) {}
-**SpaceBeforeSquareBrackets** (``Boolean``) :versionbadge:`clang-format 11`
+**SpaceBeforeSquareBrackets** (``Boolean``) :versionbadge:`clang-format 10`
If ``true``, spaces will be before ``[``.
Lambdas will not be affected. Only the first ``[`` will get a space added.
@@ -4305,7 +4308,7 @@ the configuration (without a prefix: ``Auto``).
int a [5]; vs. int a[5];
int a [5][5]; vs. int a[5][5];
-**SpaceInEmptyBlock** (``Boolean``) :versionbadge:`clang-format 11`
+**SpaceInEmptyBlock** (``Boolean``) :versionbadge:`clang-format 10`
If ``true``, spaces will be inserted into ``{}``.
.. code-block:: c++
@@ -4379,7 +4382,7 @@ the configuration (without a prefix: ``Auto``).
true: false:
x = ( int32 )y vs. x = (int32)y
-**SpacesInConditionalStatement** (``Boolean``) :versionbadge:`clang-format 11`
+**SpacesInConditionalStatement** (``Boolean``) :versionbadge:`clang-format 10`
If ``true``, spaces will be inserted around if/for/switch/while
conditions.
@@ -4543,7 +4546,7 @@ the configuration (without a prefix: ``Auto``).
For example: OpenSSL STACK_OF, BSD LIST_ENTRY.
-**UseCRLF** (``Boolean``) :versionbadge:`clang-format 11`
+**UseCRLF** (``Boolean``) :versionbadge:`clang-format 10`
Use ``\r\n`` instead of ``\n`` for line breaks.
Also used as fallback if ``DeriveLineEnding`` is true.
diff --git a/clang/include/clang/Format/Format.h b/clang/include/clang/Format/Format.h
index e1f5974bd74a0..00eaccf61bd17 100644
--- a/clang/include/clang/Format/Format.h
+++ b/clang/include/clang/Format/Format.h
@@ -462,7 +462,7 @@ struct FormatStyle {
/// Dependent on the value, ``while (true) { continue; }`` can be put on a
/// single line.
- /// \version 11
+ /// \version 3.5
ShortBlockStyle AllowShortBlocksOnASingleLine;
/// If ``true``, short case labels will be contracted to a single line.
@@ -1929,7 +1929,7 @@ struct FormatStyle {
/// \brief Analyze the formatted file for the most used line ending (``\r\n``
/// or ``\n``). ``UseCRLF`` is only used as a fallback if none can be derived.
- /// \version 11
+ /// \version 10
bool DeriveLineEnding;
/// If ``true``, analyze the formatted file for the most common
@@ -3577,7 +3577,7 @@ struct FormatStyle {
/// void f() { } vs. void f() {}
/// while (true) { } while (true) {}
/// \endcode
- /// \version 11
+ /// \version 10
bool SpaceInEmptyBlock;
/// If ``true``, spaces may be inserted into ``()``.
@@ -3640,7 +3640,7 @@ struct FormatStyle {
/// if ( a ) { ... } vs. if (a) { ... }
/// while ( i < 5 ) { ... } while (i < 5) { ... }
/// \endcode
- /// \version 11
+ /// \version 10
bool SpacesInConditionalStatement;
/// If ``true``, spaces are inserted inside container literals (e.g.
@@ -3727,7 +3727,7 @@ struct FormatStyle {
/// int a [5]; vs. int a[5];
/// int a [5][5]; vs. int a[5][5];
/// \endcode
- /// \version 11
+ /// \version 10
bool SpaceBeforeSquareBrackets;
/// Styles for adding spacing around ``:`` in bitfield definitions.
@@ -3834,7 +3834,7 @@ struct FormatStyle {
/// \brief Use ``\r\n`` instead of ``\n`` for line breaks.
/// Also used as fallback if ``DeriveLineEnding`` is true.
- /// \version 11
+ /// \version 10
bool UseCRLF;
/// The way to use tab characters in the resulting file.
More information about the cfe-commits
mailing list