Skip to content

Commit 83c83d7

Browse files
committed
Fix macOS build
1 parent 908b802 commit 83c83d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libfetchers/git-utils.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1279,7 +1279,7 @@ ref<GitRepo> getTarballCache()
12791279

12801280
GitRepo::WorkdirInfo GitRepo::getCachedWorkdirInfo(const std::filesystem::path & path)
12811281
{
1282-
static Sync<std::unordered_map<std::filesystem::path, WorkdirInfo>> _cache;
1282+
static Sync<std::map<std::filesystem::path, WorkdirInfo>> _cache;
12831283
{
12841284
auto cache(_cache.lock());
12851285
auto i = cache->find(path);

0 commit comments

Comments
 (0)