mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-07-16 17:47:22 +00:00
documentation updates, remove superfluous comments
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user