diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-08-24 15:24:16 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-08-24 15:24:16 +0000 |
commit | 728c597690056536a15910fb64a2b6ea104aa975 (patch) | |
tree | 882f9dcd9c5683e673beba0fb85122ffefe027bd /src/membuf.cpp | |
parent | 6d4a2e8f5153eefcada061d346aa5d852f2500ee (diff) | |
download | libbu++-728c597690056536a15910fb64a2b6ea104aa975.tar.gz libbu++-728c597690056536a15910fb64a2b6ea104aa975.tar.bz2 libbu++-728c597690056536a15910fb64a2b6ea104aa975.tar.xz libbu++-728c597690056536a15910fb64a2b6ea104aa975.zip |
Fixed a minor helper in Bu::MemBuf, and corrected some docs on Bu::Stream, the
synopsis line made the canWrite function misleading.
I also addad a script that could actually be used for any project, it builds a
tarball release of all the files that are in SVN, so it will skip object code
and the like.
Diffstat (limited to 'src/membuf.cpp')
-rw-r--r-- | src/membuf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/membuf.cpp b/src/membuf.cpp index 11cc1bb..35580d3 100644 --- a/src/membuf.cpp +++ b/src/membuf.cpp | |||
@@ -113,7 +113,7 @@ bool Bu::MemBuf::canRead() | |||
113 | 113 | ||
114 | bool Bu::MemBuf::canWrite() | 114 | bool Bu::MemBuf::canWrite() |
115 | { | 115 | { |
116 | return isEos(); | 116 | return true; |
117 | } | 117 | } |
118 | 118 | ||
119 | bool Bu::MemBuf::isReadable() | 119 | bool Bu::MemBuf::isReadable() |