rebase fixes

This commit is contained in:
Nikita Smith
2024-10-30 15:56:55 -07:00
parent c5d198e3e9
commit f3a36ece13
3 changed files with 3 additions and 5 deletions
-3
View File
@@ -70,12 +70,9 @@ lnk_parse_directives(Arena *arena, LNK_DirectiveInfo *directive_info, String8 bu
for (U64 i = 0; i < ArrayCount(directive_table); ++i) {
if (str8_match(directive_table[i].name, opt->string, StringMatchFlag_CaseInsensitive)) {
kind = directive_table[i].kind;
<<<<<<< HEAD
=======
if (kind == LNK_Directive_Merge) {
String8 v = str8_list_join(scratch.arena, &opt->value_strings, &(StringJoin){ .sep = str8_lit_comp(" ")});
}
>>>>>>> 9e2d09f (switch to thread safe hash trie map)
break;
}
}