From 7d7fb6daaf7e7145983e21b59fe65392bf96ae0c Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Mon, 9 Sep 2013 22:02:16 +0200 Subject: [PATCH] Made template argument explicit to workaround compiler error on MSVC. --- src/utility/url.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ()); } }