Updated F_Text and F_Append

These enum cases were also updated to OF_Text and OF_Append.
This commit is contained in:
Evan Wilde
2021-06-23 14:29:52 -07:00
parent 0aafd09835
commit 8112cda531
6 changed files with 9 additions and 9 deletions

View File

@@ -35,7 +35,7 @@ std::string MigrationState::getOutputText() const {
static bool quickDumpText(StringRef OutFilename, StringRef Text) {
std::error_code Error;
llvm::raw_fd_ostream FileOS(OutFilename,
Error, llvm::sys::fs::F_Text);
Error, llvm::sys::fs::OF_Text);
if (FileOS.has_error()) {
return true;
}