diff options
Diffstat (limited to 'llvm/unittests/Support/raw_ostream_test.cpp')
-rw-r--r-- | llvm/unittests/Support/raw_ostream_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/unittests/Support/raw_ostream_test.cpp b/llvm/unittests/Support/raw_ostream_test.cpp index 4ce4917fcea..497d31317ce 100644 --- a/llvm/unittests/Support/raw_ostream_test.cpp +++ b/llvm/unittests/Support/raw_ostream_test.cpp @@ -339,7 +339,7 @@ TEST(raw_ostreamTest, FormattedHexBytes) { TEST(raw_fd_ostreamTest, multiple_raw_fd_ostream_to_stdout) { std::error_code EC; - { raw_fd_ostream("-", EC, sys::fs::OpenFlags::F_None); } - { raw_fd_ostream("-", EC, sys::fs::OpenFlags::F_None); } + { raw_fd_ostream("-", EC, sys::fs::OpenFlags::OF_None); } + { raw_fd_ostream("-", EC, sys::fs::OpenFlags::OF_None); } } } |