I needed this squashed into before I could even compile the
resulting code. Perhaps my compiler is stale?
merge-recursive.c:28:22: error: declaration does not declare anything [-Werror]
struct hashmap_entry;
^
merge-recursive.c:29:7: error: flexible array member in other
On Mon, Aug 28, 2017 at 02:28:29PM -0600, Kevin Willford wrote:
> The code was using two string_lists, one for the directories and
> one for the files. The code never checks the lists independently
> so we should be able to only use one list. The string_list also
> is a O(log n) for lookup and i
On 8/28/2017 4:28 PM, Kevin Willford wrote:
The code was using two string_lists, one for the directories and
one for the files. The code never checks the lists independently
so we should be able to only use one list. The string_list also
is a O(log n) for lookup and insertion. Switching this
The code was using two string_lists, one for the directories and
one for the files. The code never checks the lists independently
so we should be able to only use one list. The string_list also
is a O(log n) for lookup and insertion. Switching this to use a
hashmap will give O(1) which will save
4 matches
Mail list logo