You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
isize cap = c->info.definitions.count + c->info.definition_queue.count.load(std::memory_order_relaxed);
5026
+
array_reserve(&c->info.definitions, cap);
5027
+
for (Entity *e; mpmc_dequeue(&c->info.definition_queue, &e); /**/) {
5028
+
array_add(&c->info.definitions, e);
5030
5029
}
5031
5030
}
5032
5031
5033
5032
5033
+
5034
5034
voidcheck_parsed_files(Checker *c) {
5035
5035
#defineTIME_SECTION(str) do { debugf("[Section] %s\n", str); if (build_context.show_more_timings) timings_start_section(&global_timings, str_lit(str)); } while (0)
0 commit comments