aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2013-09-09 20:02:16 +0000
committerVincent Richard <[email protected]>2013-09-09 20:02:16 +0000
commit7d7fb6daaf7e7145983e21b59fe65392bf96ae0c (patch)
tree7ed6b3322c42cdab84ef647c4acb3738f10a1be8 /src
parentSMTP-specific exceptions. (diff)
downloadvmime-7d7fb6daaf7e7145983e21b59fe65392bf96ae0c.tar.gz
vmime-7d7fb6daaf7e7145983e21b59fe65392bf96ae0c.zip
Made template argument explicit to workaround compiler error on MSVC.
Diffstat (limited to 'src')
-rw-r--r--src/utility/url.cpp2
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>());
}
}