aboutsummaryrefslogtreecommitdiffstats
path: root/src/platforms/posix/posixChildProcess.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2008-10-12 10:05:28 +0000
committerVincent Richard <[email protected]>2008-10-12 10:05:28 +0000
commit3f4226eaac5d0d30be1f4ca5d5cf010c98a7ce7d (patch)
tree1968196db0d6ae27fd70d0732ff3defed0efb61f /src/platforms/posix/posixChildProcess.cpp
parentEncode '?' characters to avoid breaking QP encoding (Zarafa). (diff)
downloadvmime-3f4226eaac5d0d30be1f4ca5d5cf010c98a7ce7d.tar.gz
vmime-3f4226eaac5d0d30be1f4ca5d5cf010c98a7ce7d.zip
Fixed compilation warnings.
Diffstat (limited to 'src/platforms/posix/posixChildProcess.cpp')
-rw-r--r--src/platforms/posix/posixChildProcess.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/platforms/posix/posixChildProcess.cpp b/src/platforms/posix/posixChildProcess.cpp
index 6765c705..d1a0d910 100644
--- a/src/platforms/posix/posixChildProcess.cpp
+++ b/src/platforms/posix/posixChildProcess.cpp
@@ -145,7 +145,7 @@ public:
{
}
- const bool eof() const
+ bool eof() const
{
return (m_eof);
}
@@ -155,7 +155,7 @@ public:
// Do nothing: unsupported
}
- const size_type skip(const size_type count)
+ size_type skip(const size_type count)
{
// TODO: not tested
value_type buffer[4096];
@@ -178,7 +178,7 @@ public:
return static_cast <size_type>(bytesSkipped);
}
- const size_type read(value_type* const data, const size_type count)
+ size_type read(value_type* const data, const size_type count)
{
int bytesRead = 0;