mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2025-01-26 03:12:23 +01:00
llama : add missing enum keyword in function signatures (#2610)
This commit is contained in:
parent
1cd06fa25e
commit
348acf188c
2
llama.h
2
llama.h
@ -97,7 +97,7 @@ extern "C" {
|
|||||||
// If your logging mechanism cannot handle that, check if the last character is '\n' and strip it
|
// If your logging mechanism cannot handle that, check if the last character is '\n' and strip it
|
||||||
// if it exists.
|
// if it exists.
|
||||||
// It might not exist for progress report where '.' is output repeatedly.
|
// It might not exist for progress report where '.' is output repeatedly.
|
||||||
typedef void (*llama_log_callback)(llama_log_level level, const char * text, void * user_data);
|
typedef void (*llama_log_callback)(enum llama_log_level level, const char * text, void * user_data);
|
||||||
|
|
||||||
struct llama_context_params {
|
struct llama_context_params {
|
||||||
uint32_t seed; // RNG seed, -1 for random
|
uint32_t seed; // RNG seed, -1 for random
|
||||||
|
Loading…
Reference in New Issue
Block a user