Skip to content

Commit

Permalink
Fix clang compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
kishorenc committed Jan 2, 2024
1 parent 350c290 commit 06fd80c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/index.h
Expand Up @@ -749,7 +749,8 @@ class Index {
const std::vector<char>& symbols_to_index,
const bool do_validation, const size_t remote_embedding_batch_size = 200,
const size_t remote_embedding_timeout_ms = 60000, const size_t remote_embedding_num_tries = 2, const bool generate_embeddings = true,
const bool use_addition_fields = false, const tsl::htrie_map<char, field>& addition_fields = {});
const bool use_addition_fields = false,
const tsl::htrie_map<char, field>& addition_fields = tsl::htrie_map<char, field>());

void index_field_in_memory(const field& afield, std::vector<index_record>& iter_batch);

Expand Down

0 comments on commit 06fd80c

Please sign in to comment.