Merge pull request #5458 from milchakov/build_fix

build fix
This commit is contained in:
mgsergio 2017-02-21 14:56:24 +03:00 committed by GitHub
commit 6538aa7e9c

View file

@ -45,7 +45,7 @@ bool RunSimpleHttpRequest(bool const needAuth, string const & url, string & resu
string MakeApiUrl(string const & func, initializer_list<pair<string, string>> const & params,
bool testing)
{
ASSERT(!params.empty(), ());
ASSERT_NOT_EQUAL(params.size(), 0, ());
ostringstream os;
os << kBookingApiBaseUrl << "." << func << "?";