Fixes regression introduced in 8ff8dc.

References:
- https://github.com/Project-OSRM/osrm-backend/pull/2252/commits/8ff8dc7200c0e1623b66ec950419be233ab37cc3
This commit is contained in:
Daniel J. Hofmann
2016-04-12 21:12:08 +02:00
parent 8ff8dc7200
commit d6407e5095
@@ -30,7 +30,8 @@ struct TableParametersGrammar final : public BaseParametersGrammar
const auto set_sources = [this](SourcesT sources) {
parameters.sources = std::move(sources);
};
#ifdef BOOST_HAS_LONG_LONG
// TODO: ulonglong -> size_t not only on Windows but on all 32 bit platforms; unsupported anyway as of now
#ifdef WIN32
destinations_rule = (qi::lit("destinations=") > (qi::ulong_long % ";")[set_destiantions]) |
qi::lit("destinations=all");
sources_rule =