forked from OSchip/llvm-project
rename OutputData to 'write' to match ostream.
llvm-svn: 54857
This commit is contained in:
parent
3bed934934
commit
3394262a33
|
@ -66,10 +66,10 @@ public:
|
|||
}
|
||||
|
||||
raw_ostream &operator<<(const char *Str) {
|
||||
return OutputData(Str, strlen(Str));
|
||||
return write(Str, strlen(Str));
|
||||
}
|
||||
|
||||
raw_ostream &OutputData(const char *Ptr, unsigned Size) {
|
||||
raw_ostream &write(const char *Ptr, unsigned Size) {
|
||||
if (OutBufCur+Size > OutBufEnd)
|
||||
flush_impl();
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ raw_fd_ostream::~raw_fd_ostream() {
|
|||
|
||||
void raw_fd_ostream::flush_impl() {
|
||||
if (OutBufCur-OutBufStart)
|
||||
write(FD, OutBufStart, OutBufCur-OutBufStart);
|
||||
::write(FD, OutBufStart, OutBufCur-OutBufStart);
|
||||
HandleFlush();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue