From fc1c6b08d191b3ee9964bf53ea95767bc54377ee Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Sat, 1 Jan 2005 11:32:23 +0000 Subject: Converted all C-style casts to C++-style casts + added unit test for utility::md5. --- src/messaging/IMAPConnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/messaging/IMAPConnection.cpp') diff --git a/src/messaging/IMAPConnection.cpp b/src/messaging/IMAPConnection.cpp index d6f79ed3..c2ae2418 100644 --- a/src/messaging/IMAPConnection.cpp +++ b/src/messaging/IMAPConnection.cpp @@ -218,7 +218,7 @@ void IMAPConnection::send(bool tag, const string& what, bool end) { ++(*m_tag); - oss << (string) *m_tag; + oss << string(*m_tag); oss << " "; } -- cgit