[clang-format] Remove unnecessary qualifications. NFC.

This commit is contained in:
Marek Kurdej 2021-12-21 16:58:08 +01:00
parent 01d97dfde1
commit 36ea9861e3
1 changed files with 2 additions and 2 deletions

View File

@ -262,8 +262,8 @@ TEST_F(FormatTest, RemovesEmptyLines) {
"}",
getGoogleStyle()));
auto CustomStyle = clang::format::getLLVMStyle();
CustomStyle.BreakBeforeBraces = clang::format::FormatStyle::BS_Custom;
auto CustomStyle = getLLVMStyle();
CustomStyle.BreakBeforeBraces = FormatStyle::BS_Custom;
CustomStyle.BraceWrapping.AfterNamespace = true;
CustomStyle.KeepEmptyLinesAtTheStartOfBlocks = false;
EXPECT_EQ("namespace N\n"