mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-12 03:32:10 +00:00
Fix a redundant-return warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104958 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
17d95965cb
commit
9ba7f65743
@ -496,8 +496,9 @@ size_t raw_fd_ostream::preferred_buffer_size() const {
|
|||||||
return 0;
|
return 0;
|
||||||
// Return the preferred block size.
|
// Return the preferred block size.
|
||||||
return statbuf.st_blksize;
|
return statbuf.st_blksize;
|
||||||
#endif
|
#else
|
||||||
return raw_ostream::preferred_buffer_size();
|
return raw_ostream::preferred_buffer_size();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold,
|
raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user