summaryrefslogtreecommitdiff
path: root/src/PrintPure.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/PrintPure.ml
parent0154696ae7124f57e17c6a2eea3bf4e684ed7a8f (diff)
In fun_id rename the variant Local to Regular
Diffstat (limited to 'src/PrintPure.ml')
-rw-r--r--src/PrintPure.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PrintPure.ml b/src/PrintPure.ml
index 52215019..27e5ff37 100644
--- a/src/PrintPure.ml
+++ b/src/PrintPure.ml
@@ -359,7 +359,7 @@ let inst_fun_sig_to_string (fmt : ast_formatter) (sg : inst_fun_sig) : string =
let regular_fun_id_to_string (fmt : ast_formatter) (fun_id : A.fun_id) : string
=
match fun_id with
- | A.Local fid -> fmt.fun_decl_id_to_string fid
+ | A.Regular fid -> fmt.fun_decl_id_to_string fid
| A.Assumed fid -> (
match fid with
| A.Replace -> "core::mem::replace"