commit | feaeb36edf2a3d971a9392973b0f30e46284c2d1 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Fri May 28 16:50:01 2010 +0000 |
committer | Dan Gohman <gohman@apple.com> | Fri May 28 16:50:01 2010 +0000 |
tree | eff93b28745e92a79dcaa426ee91ca5d18c9ed80 | |
parent | 862f034188a49b2f68955eebc2b42c8afe539105 [diff] [blame] |
Fix a redundant-return warning. llvm-svn: 104958
diff --git a/llvm/lib/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp index 11cf0ec..93428f5 100644 --- a/llvm/lib/Support/raw_ostream.cpp +++ b/llvm/lib/Support/raw_ostream.cpp
@@ -496,8 +496,9 @@ return 0; // Return the preferred block size. return statbuf.st_blksize; -#endif +#else return raw_ostream::preferred_buffer_size(); +#endif } raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold,