From a810de668514c9bdd8eda490a3354f2b7b696d09 Mon Sep 17 00:00:00 2001 From: Ethan Steinberg Date: Wed, 26 Jun 2024 23:06:30 -0700 Subject: [PATCH] Fix type for mac builds --- native/create_database.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/create_database.cc b/native/create_database.cc index a7de049..6d109d0 100644 --- a/native/create_database.cc +++ b/native/create_database.cc @@ -953,7 +953,7 @@ void process_string_property(const std::string& property_name, // We have to start by reading everything in std::vector< - moodycamel::BlockingConcurrentQueue>> + moodycamel::BlockingConcurrentQueue>> queues(num_threads); moodycamel::LightweightSemaphore write_semaphore(QUEUE_SIZE * num_threads);