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 a9e5718 commit 8159427Copy full SHA for 8159427
clang/lib/Frontend/DependencyFile.cpp
@@ -324,11 +324,10 @@ void DependencyFileGenerator::finishedMainFile(DiagnosticsEngine &Diags) {
324
void DependencyFileGenerator::outputDependencyFilename(
325
raw_ostream &OS, StringRef Filename) const {
326
llvm::SmallString<256> NativePath;
327
- if (MSCompatible) {
+ if (MSCompatible)
328
llvm::sys::path::native(Filename.str(), NativePath);
329
- } else {
+ else
330
NativePath = Filename;
331
- }
332
333
if (OutputFormat == DependencyOutputFormat::NMake) {
334
// Add quotes if needed. These are the characters listed as "special" to
0 commit comments