diff options
author | Vincent Richard <[email protected]> | 2010-02-03 11:01:40 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2010-02-03 11:01:40 +0000 |
commit | b05039de3de4e4d2554e5a690d3779cbfc69f2c9 (patch) | |
tree | f1c137db06a2e135ee070d5b72105edb295b7d23 | |
parent | Use homemade isSpace() instead of std::ispace() for portability. (diff) | |
download | vmime-b05039de3de4e4d2554e5a690d3779cbfc69f2c9.tar.gz vmime-b05039de3de4e4d2554e5a690d3779cbfc69f2c9.zip |
Fixed compilation issue on Windows.
-rw-r--r-- | src/platforms/windows/windowsFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/platforms/windows/windowsFile.cpp b/src/platforms/windows/windowsFile.cpp index 82c5696f..624612af 100644 --- a/src/platforms/windows/windowsFile.cpp +++ b/src/platforms/windows/windowsFile.cpp @@ -268,7 +268,7 @@ bool windowsFile::canWrite() const return true; } -const windowsFile::length_type windowsFile::getLength() +windowsFile::length_type windowsFile::getLength() { HANDLE hFile = CreateFile( m_nativePath.c_str(), |