Made template argument explicit to workaround compiler error on MSVC.

This commit is contained in:
Vincent Richard 2013-09-09 22:02:16 +02:00
parent 3b13021469
commit 7d7fb6daaf

View File

@ -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>());
}
}