Skip to content

Commit 4170ea9

Browse files
committed
[clang][deps] NFC: Fix whitespace formatting
1 parent 586765c commit 4170ea9

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

clang/lib/Tooling/DependencyScanning/DependencyScanningFilesystem.cpp

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -115,15 +115,14 @@ static bool shouldMinimizeBasedOnExtension(StringRef Filename) {
115115
if (Ext.empty())
116116
return true; // C++ standard library
117117
return llvm::StringSwitch<bool>(Ext)
118-
.CasesLower(".c", ".cc", ".cpp", ".c++", ".cxx", true)
119-
.CasesLower(".h", ".hh", ".hpp", ".h++", ".hxx", true)
120-
.CasesLower(".m", ".mm", true)
121-
.CasesLower(".i", ".ii", ".mi", ".mmi", true)
122-
.CasesLower(".def", ".inc", true)
123-
.Default(false);
118+
.CasesLower(".c", ".cc", ".cpp", ".c++", ".cxx", true)
119+
.CasesLower(".h", ".hh", ".hpp", ".h++", ".hxx", true)
120+
.CasesLower(".m", ".mm", true)
121+
.CasesLower(".i", ".ii", ".mi", ".mmi", true)
122+
.CasesLower(".def", ".inc", true)
123+
.Default(false);
124124
}
125125

126-
127126
static bool shouldCacheStatFailures(StringRef Filename) {
128127
StringRef Ext = llvm::sys::path::extension(Filename);
129128
if (Ext.empty())

0 commit comments

Comments
 (0)