mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Another StringRef -> std::string conversion fix.
This is needed to make this code compile on master-next.
This commit is contained in:
@@ -2774,7 +2774,7 @@ static std::string getJsonOutputFilePath(llvm::Triple Triple, bool ABI) {
|
||||
exit(1);
|
||||
}
|
||||
llvm::sys::path::append(OutputPath, getBaselineFilename(Triple));
|
||||
return OutputPath.str();
|
||||
return OutputPath.str().str();
|
||||
}
|
||||
llvm::errs() << "Unable to decide output file path\n";
|
||||
exit(1);
|
||||
|
||||
Reference in New Issue
Block a user