From 456b8e635a135ac698e90f60c829be31696183c5 Mon Sep 17 00:00:00 2001 From: Eduard Nicodei Date: Mon, 15 Jul 2024 18:13:48 +0100 Subject: [PATCH] fix warning: add missing Functor --- parser-typechecker/src/Unison/Codebase/ProjectPath.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser-typechecker/src/Unison/Codebase/ProjectPath.hs b/parser-typechecker/src/Unison/Codebase/ProjectPath.hs index 2714c44e4a..651f7f2ca5 100644 --- a/parser-typechecker/src/Unison/Codebase/ProjectPath.hs +++ b/parser-typechecker/src/Unison/Codebase/ProjectPath.hs @@ -44,7 +44,7 @@ data ProjectPathG proj branch = ProjectPath branch :: branch, absPath :: Path.Absolute } - deriving stock (Eq, Ord, Show, Generic) + deriving stock (Eq, Functor, Ord, Show, Generic) type ProjectPathIds = ProjectPathG ProjectId ProjectBranchId