Get things to compile with gcc-7.

This commit is contained in:
Ulrich Germann 2020-05-13 17:12:02 +01:00
Родитель 8f2c845e03
Коммит 8d5ed0e6d5
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -77,7 +77,7 @@ public:
// callback() is not static, so we must wrap it in a lambda:
auto cb = [=](Ptr<History const> h) { this->callback_(h); };
auto w = New<TranslationWorker>(d, vocabs_, slgen_, jq_, cb, options_);
w->start<Search>();
w->template start<Search>();
workers_.push_back(w);
}
}

Просмотреть файл

@ -173,7 +173,7 @@ int main(int argc, char* argv[])
auto options = cp.parseOptions(argc, argv, true);
auto service = New<tservice_t>(options);
service->start<BeamSearch>();
service->template start<BeamSearch>();
crow::SimpleApp app;
std::string doc_root = options->get<std::string>("server-root");