forked from OSchip/llvm-project
[clang-format] Remove unnecessary qualifications. NFC.
This commit is contained in:
parent
01d97dfde1
commit
36ea9861e3
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue