Fixes regression introduced in 8ff8dc.

References:
- 8ff8dc7200
This commit is contained in:
Daniel J. Hofmann 2016-04-12 21:12:08 +02:00
parent 8ff8dc7200
commit d6407e5095

View File

@ -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 =