Fixed compilation errors with g++ 4.0.

This commit is contained in:
Vincent Richard 2005-06-21 16:49:00 +00:00
parent 0e5e375cef
commit 7b3dd58edb
8 changed files with 17 additions and 1 deletions

View File

@ -2,6 +2,10 @@
VERSION 0.7.1cvs
================
2005-06-21 Vincent Richard <vincent@vincent-richard.net>
* Fixed compilation errors with g++ 4.0.
2005-06-13 Vincent Richard <vincent@vincent-richard.net>
* word.cpp: fixed a bug in parsing, when the first character of word data

View File

@ -329,7 +329,7 @@ void maildirMessage::extractPart(const part& p, utility::outputStream& os,
void maildirMessage::extractImpl(utility::outputStream& os, utility::progressionListener* progress,
const int start, const int length, const int partialStart, const int partialLength,
const bool peek) const
const bool /* peek */) const
{
utility::fileSystemFactory* fsf = platformDependant::getHandler()->getFileSystemFactory();

View File

@ -26,6 +26,7 @@
#include "vmime/types.hpp"
#include "vmime/dateTime.hpp"
#include "vmime/message.hpp"
#include "vmime/messaging/message.hpp"
#include "vmime/messaging/events.hpp"

View File

@ -32,6 +32,9 @@ namespace messaging {
namespace imap {
class IMAPFolder;
/** IMAP message implementation.
*/

View File

@ -38,6 +38,7 @@ namespace imap {
class IMAPParser;
class IMAPTag;
class IMAPConnection;
class IMAPFolder;
/** IMAP store service.

View File

@ -37,6 +37,7 @@ namespace maildir {
class maildirStore;
class maildirMessage;
/** maildir folder implementation.

View File

@ -32,6 +32,9 @@ namespace messaging {
namespace pop3 {
class POP3Folder;
/** POP3 message implementation.
*/

View File

@ -35,6 +35,9 @@ namespace messaging {
namespace pop3 {
class POP3Folder;
/** POP3 store service.
*/