diff --git a/llama.cpp b/llama.cpp index 8add6d165..eafcfda22 100644 --- a/llama.cpp +++ b/llama.cpp @@ -4460,7 +4460,7 @@ struct llm_bigram_bpe { struct llm_tokenizer_bpe { llm_tokenizer_bpe(const llama_vocab & vocab): vocab(vocab) {} - void tokenize(const std::string & text, std::vector& output) { + void tokenize(const std::string & text, std::vector & output) { int final_prev_index = -1; auto word_collection = bpe_gpt2_preprocess(text);