From a124dee079af894a0a7b28288d0cb31d072699b7 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Mon, 24 Feb 2014 16:40:34 +0000 Subject: [PATCH] Fix windows unittest I missed in the raw_fd_ostream constructor change. llvm-svn: 202050 --- unittests/Support/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/Support/Path.cpp b/unittests/Support/Path.cpp index 2d8141f7372..d834ec04e04 100644 --- a/unittests/Support/Path.cpp +++ b/unittests/Support/Path.cpp @@ -521,7 +521,7 @@ TEST_F(FileSystemTest, CarriageReturn) { path::append(FilePathname, "test"); { - raw_fd_ostream File(FilePathname.c_str(), ErrMsg); + raw_fd_ostream File(FilePathname.c_str(), ErrMsg, sys::fs::F_None); EXPECT_EQ(ErrMsg, ""); File << '\n'; }