diff options
| author | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-11 12:48:05 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-11 12:48:05 +0100 |
| commit | 08d42688d851eb134da496be721e234f53ff8d0b (patch) | |
| tree | 5c8a448a42cd8ec4dc35c55edef85f0063b9a50a /include/importer.hpp | |
| parent | ccbc6a8f0836583fabd59919bd7930d7cfe1473e (diff) | |
fix warnings
Diffstat (limited to 'include/importer.hpp')
| -rw-r--r-- | include/importer.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/importer.hpp b/include/importer.hpp index b432b45..731d1ff 100644 --- a/include/importer.hpp +++ b/include/importer.hpp @@ -37,7 +37,7 @@ namespace importer { IMPORT_QUERYING, IMPORT_WAITING_FOR_RESPONSE, IMPORT_DONE, - } status; + } import_status; typedef struct { @@ -45,14 +45,14 @@ namespace importer { invoice result; char file_path[MAX_LEN_PATH]; i_err error; - status status; + import_status status; } invoice_request; typedef struct { time_t started_at; i_err error; - status status; + import_status status; u32 result_count; char result[MAX_MODEL_LIST_RESULT_COUNT][MAX_LEN_SHORT_DESC]; ai_provider service; @@ -77,7 +77,7 @@ namespace importer { } email_provider_impl; const char* error_to_string(i_err error); - const char* status_to_string(status status); + const char* status_to_string(import_status status); ai_provider_impl get_ai_provider_implementation(ai_provider provider); |
