style : remove spaces

This commit is contained in:
jaime-m-p 2024-07-04 17:11:45 +02:00
parent 68220feaf8
commit 98fc182312

View file

@ -5098,7 +5098,7 @@ static void llm_load_vocab(
}
}
std::sort( vocab.cache_special_tokens.begin(), vocab.cache_special_tokens.end(),
std::sort(vocab.cache_special_tokens.begin(), vocab.cache_special_tokens.end(),
[&] (const llama_vocab::id a, const llama_vocab::id b) {
return vocab.id_to_token[a].text.size() > vocab.id_to_token[b].text.size();
}