summaryrefslogtreecommitdiff
path: root/src/LlbcAst.ml
diff options
context:
space:
mode:
authorSon Ho2022-03-03 18:27:17 +0100
committerSon Ho2022-03-03 18:27:17 +0100
commit6001c7241e50af8d9e1cd05fa2c97372a2ac9778 (patch)
tree2be68e2997fd04ee3ae3c8aaff541abed44f956d /src/LlbcAst.ml
parent0154696ae7124f57e17c6a2eea3bf4e684ed7a8f (diff)
In fun_id rename the variant Local to Regular
Diffstat (limited to 'src/LlbcAst.ml')
-rw-r--r--src/LlbcAst.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LlbcAst.ml b/src/LlbcAst.ml
index f5ffc956..6e77cadb 100644
--- a/src/LlbcAst.ml
+++ b/src/LlbcAst.ml
@@ -33,7 +33,7 @@ type assumed_fun_id =
(** `core::ops::index::IndexMut::index_mut<alloc::vec::Vec<T>, usize>` *)
[@@deriving show, ord]
-type fun_id = Local of FunDeclId.id | Assumed of assumed_fun_id
+type fun_id = Regular of FunDeclId.id | Assumed of assumed_fun_id
[@@deriving show, ord]
type assertion = { cond : operand; expected : bool } [@@deriving show]