aboutsummaryrefslogtreecommitdiff
path: root/lib/configuration/syntax.ml
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-02-04 22:30:34 +0100
committerSébastien Dailly <sebastien@dailly.me>2025-02-13 18:30:43 +0100
commitd3e0821b9c1551177afb34220d951b087acdea22 (patch)
treeba23b2916c7cb0336cb42793e4bee931053cacf5 /lib/configuration/syntax.ml
parent37556ab070abcbf87a1a822c95aeccf19dade687 (diff)
Fixed a bug when a group function did not partition in the same way as the uniq parameter
Diffstat (limited to 'lib/configuration/syntax.ml')
-rw-r--r--lib/configuration/syntax.ml4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/configuration/syntax.ml b/lib/configuration/syntax.ml
index ee47277..9a0a706 100644
--- a/lib/configuration/syntax.ml
+++ b/lib/configuration/syntax.ml
@@ -53,6 +53,10 @@ module Extern = struct
|> Otoml.table
end
+module ExpressionSet = Set.Make (struct
+ type t = Path.t ImportExpression.T.t [@@deriving show, eq, ord]
+end)
+
type t = {
version : int;
locale : string option;