diff options
author | Vincent Richard <[email protected]> | 2013-09-09 20:02:16 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-09-09 20:02:16 +0000 |
commit | 7d7fb6daaf7e7145983e21b59fe65392bf96ae0c (patch) | |
tree | 7ed6b3322c42cdab84ef647c4acb3738f10a1be8 /src/utility/url.cpp | |
parent | SMTP-specific exceptions. (diff) | |
download | vmime-7d7fb6daaf7e7145983e21b59fe65392bf96ae0c.tar.gz vmime-7d7fb6daaf7e7145983e21b59fe65392bf96ae0c.zip |
Made template argument explicit to workaround compiler error on MSVC.
Diffstat (limited to 'src/utility/url.cpp')
-rw-r--r-- | src/utility/url.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utility/url.cpp b/src/utility/url.cpp index b8182427..d3c5445d 100644 --- a/src/utility/url.cpp +++ b/src/utility/url.cpp @@ -149,7 +149,7 @@ const string url::build() const oss << urlUtils::encode(prop->getName()); oss << "="; - oss << urlUtils::encode(prop->getValue()); + oss << urlUtils::encode(prop->getValue <string>()); } } |