diff options
author | Sirraide <aeternalmail@gmail.com> | 2025-01-21 14:13:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-21 14:13:13 +0100 |
commit | 33656932b0e9098354b2e685d6ed70bd0bcb246a (patch) | |
tree | 0966504fcd2c427134d53d0ba4aee38c50f3cc34 /clang/unittests/Format/ConfigParseTest.cpp | |
parent | 5d9c717597aef72e4ba27a2b143e9753c513e5c9 (diff) | |
download | llvm-33656932b0e9098354b2e685d6ed70bd0bcb246a.zip llvm-33656932b0e9098354b2e685d6ed70bd0bcb246a.tar.gz llvm-33656932b0e9098354b2e685d6ed70bd0bcb246a.tar.bz2 |
[clang-format] Rename ExportBlockIndentation -> IndentExportBlock (#123493)
This renames the `ExportBlockIndentation` option and adds a config parse
test, as requested in #110381.
Diffstat (limited to 'clang/unittests/Format/ConfigParseTest.cpp')
-rw-r--r-- | clang/unittests/Format/ConfigParseTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/unittests/Format/ConfigParseTest.cpp b/clang/unittests/Format/ConfigParseTest.cpp index 1f0beaf..9746aa3 100644 --- a/clang/unittests/Format/ConfigParseTest.cpp +++ b/clang/unittests/Format/ConfigParseTest.cpp @@ -176,6 +176,7 @@ TEST(ConfigParseTest, ParsesConfigurationBools) { CHECK_PARSE_BOOL(IndentAccessModifiers); CHECK_PARSE_BOOL(IndentCaseBlocks); CHECK_PARSE_BOOL(IndentCaseLabels); + CHECK_PARSE_BOOL(IndentExportBlock); CHECK_PARSE_BOOL(IndentGotoLabels); CHECK_PARSE_BOOL(IndentRequiresClause); CHECK_PARSE_BOOL_FIELD(IndentRequiresClause, "IndentRequires"); |