another int to size_t

This commit is contained in:
Jerin Philip 2021-02-16 20:04:30 +00:00
parent 4c8b655ac5
commit 9c907ea605

View File

@ -20,7 +20,7 @@ void Batch::add(const RequestSentence &sentence) {
}
void Batch::completeBatch(const Histories &histories) {
for (int i = 0; i < sentences_.size(); i++) {
for (size_t i = 0; i < sentences_.size(); i++) {
sentences_[i].completeSentence(histories[i]);
}
}