Commit 4f124d3d authored by Joseph Noir's avatar Joseph Noir

Fix URI Inspector

parent e31a93fe
......@@ -272,7 +272,8 @@ public:
template <class Inspector>
friend typename Inspector::result_type inspect(Inspector& f, uri& u) {
return f(meta::type_name("uri"), u.c_str());
auto tmp = u.str();
return f(meta::type_name("uri"), tmp);
}
/// @endcond
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment