documentation updates, remove superfluous comments

This commit is contained in:
Aaron Po
2026-06-23 01:04:46 -04:00
parent e590cf2543
commit 35a5c0785c
21 changed files with 44 additions and 95 deletions

View File

@@ -16,24 +16,10 @@
*/
class LlamaBackendState {
public:
/**
* @brief Initializes global llama backend state.
*/
LlamaBackendState() { llama_backend_init(); }
/**
* @brief Cleans up global llama backend state.
*/
~LlamaBackendState() { llama_backend_free(); }
/**
* @brief Non-copyable type.
*/
LlamaBackendState(const LlamaBackendState&) = delete;
/**
* @brief Non-copyable type.
*/
LlamaBackendState& operator=(const LlamaBackendState&) = delete;
};