First round of lat,lng -> lng,lat switcheroo
This commit is contained in:
@@ -33,7 +33,7 @@ template <typename ParameterT,
|
||||
typename std::enable_if<detail::is_parameter_t<ParameterT>::value, int>::type = 0>
|
||||
boost::optional<ParameterT> parseParameters(std::string options_string)
|
||||
{
|
||||
const auto first = options_string.begin();
|
||||
auto first = options_string.begin();
|
||||
const auto last = options_string.end();
|
||||
return parseParameters<ParameterT>(first, last);
|
||||
}
|
||||
|
||||
@@ -18,10 +18,9 @@ struct ParsedURL
|
||||
std::string service;
|
||||
unsigned version;
|
||||
std::string profile;
|
||||
std::vector<util::FixedPointCoordinate> coordinates;
|
||||
std::vector<util::Coordinate> coordinates;
|
||||
std::string options;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user