Skip to content

Commit 9690e48

Browse files
clang-format
Created using spr 1.3.7
1 parent 2f9ef51 commit 9690e48

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

llvm/lib/Support/Unix/Path.inc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1202,7 +1202,8 @@ Expected<size_t> readNativeFile(file_t FD, MutableArrayRef<char> Buf) {
12021202
#else
12031203
size_t Size = Buf.size();
12041204
#endif
1205-
ssize_t NumRead = sys::RetryAfterSignal(-1, ::read, FD.get(), Buf.data(), Size);
1205+
ssize_t NumRead =
1206+
sys::RetryAfterSignal(-1, ::read, FD.get(), Buf.data(), Size);
12061207
if (NumRead == -1)
12071208
return errorCodeToError(errnoAsErrorCode());
12081209
// The underlying operation on these platforms allow opening directories

llvm/lib/Support/VirtualFileSystem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
using namespace llvm;
5454
using namespace llvm::vfs;
5555

56-
using llvm::sys::fs::file_t;
5756
using llvm::sys::fs::file_status;
57+
using llvm::sys::fs::file_t;
5858
using llvm::sys::fs::file_type;
5959
using llvm::sys::fs::perms;
6060
using llvm::sys::fs::UniqueID;

0 commit comments

Comments
 (0)