We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c719809 commit 160adadCopy full SHA for 160adad
clang-tools-extra/clangd/unittests/tweaks/DefineInlineTests.cpp
@@ -937,8 +937,9 @@ TEST_F(DefineInlineTest, AddInline) {
937
apply(R"cpp(#include "a.h"
938
const int fo^o() { return 0; })cpp",
939
&EditedFiles);
940
- EXPECT_THAT(EditedFiles, testing::ElementsAre(FileWithContents(
941
- testPath("a.h"), "inline const int foo(){ return 0; }")));
+ EXPECT_THAT(EditedFiles,
+ testing::ElementsAre(FileWithContents(
942
+ testPath("a.h"), "inline const int foo(){ return 0; }")));
943
944
// No double inline.
945
ExtraFiles["a.h"] = "inline void foo();";
0 commit comments