summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2014-08-15 22:47:06 +0000
committerChris Wilson <chris+github@qwirx.com>2014-08-15 22:47:06 +0000
commit4c70b143f024f343cde1aded2ba4511e69da5863 (patch)
treed82e65054b1bb4a072e598022a283e9d2c16ec49 /lib
parenta5cee359ce48756a7916940b39b62a427c30ad31 (diff)
Trailing whitespace fixes.
Conflicts: bin/bbackupd/BackupClientDirectoryRecord.cpp
Diffstat (limited to 'lib')
-rw-r--r--lib/common/IOStreamGetLine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/common/IOStreamGetLine.h b/lib/common/IOStreamGetLine.h
index c4289073..7667642d 100644
--- a/lib/common/IOStreamGetLine.h
+++ b/lib/common/IOStreamGetLine.h
@@ -37,12 +37,12 @@ public:
// Call to detach, setting file pointer correctly to last bit read.
// Only works for lseek-able file descriptors.
void DetachFile();
-
+
virtual bool IsStreamDataLeft()
{
return mrStream.StreamDataLeft();
}
-
+
// For doing interesting stuff with the remaining data...
// Be careful with this!
const void *GetBufferedData() const {return mBuffer + mBufferBegin;}
@@ -52,7 +52,7 @@ public:
protected:
int ReadMore(int Timeout = IOStream::TimeOutInfinite);
-
+
private:
IOStream &mrStream;
};