diff options
Diffstat (limited to 'src/messaging/IMAPUtils.cpp')
-rw-r--r-- | src/messaging/IMAPUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messaging/IMAPUtils.cpp b/src/messaging/IMAPUtils.cpp index ef25c103..b56b33f7 100644 --- a/src/messaging/IMAPUtils.cpp +++ b/src/messaging/IMAPUtils.cpp @@ -152,7 +152,7 @@ const string IMAPUtils::toModifiedUTF7 const char base64alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+,="; - const unsigned int hs = (unsigned int)(unsigned char) hierarchySeparator; + const unsigned int hs = static_cast <unsigned int>(static_cast <unsigned char>(hierarchySeparator)); string hsUTF7; hsUTF7.resize(3); |