remove void
This commit is contained in:
parent
eee8b28d36
commit
4148b9bd03
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ size_t find_partial_stop_string(const std::string & stop, const std::string & te
|
|||
template<class Iter>
|
||||
static std::string tokens_to_str(llama_context * ctx, Iter begin, Iter end) {
|
||||
std::string ret;
|
||||
for (; begin != end; (void)++begin) {
|
||||
for (; begin != end; ++begin) {
|
||||
ret += llama_token_to_str(ctx, *begin);
|
||||
}
|
||||
return ret;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue