diff options
author | Owen Pan <owenpiano@gmail.com> | 2025-06-28 15:23:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-28 15:23:00 -0700 |
commit | f771d08a24762dada69bf426016f5fd1cf83a437 (patch) | |
tree | 0d7aac09ea31541d40c4296f2355e8ef426d1cfc /clang/unittests/Format/FormatTestComments.cpp | |
parent | d2e8e55e02f7e082cd7bae4d834ba5ee08f8b46c (diff) | |
download | llvm-f771d08a24762dada69bf426016f5fd1cf83a437.zip llvm-f771d08a24762dada69bf426016f5fd1cf83a437.tar.gz llvm-f771d08a24762dada69bf426016f5fd1cf83a437.tar.bz2 |
[clang-format] Fix a bug in `ReflowComments: Always` (#146202)
Fixes #39150
Diffstat (limited to 'clang/unittests/Format/FormatTestComments.cpp')
-rw-r--r-- | clang/unittests/Format/FormatTestComments.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Format/FormatTestComments.cpp b/clang/unittests/Format/FormatTestComments.cpp index 5eefd76..a16fbffb 100644 --- a/clang/unittests/Format/FormatTestComments.cpp +++ b/clang/unittests/Format/FormatTestComments.cpp @@ -2486,7 +2486,7 @@ TEST_F(FormatTestComments, BlockComments) { EXPECT_EQ("/*\n" "**\n" "* aaaaaa\n" - "*aaaaaa\n" + "* aaaaaa\n" "*/", format("/*\n" "**\n" |