From 30e0af4773d6aeef91248790bf2026257879c601 Mon Sep 17 00:00:00 2001 From: Alexander Bandukwala <7h3kk1d@gmail.com> Date: Fri, 20 Dec 2024 15:27:12 -0500 Subject: [PATCH] Revert pp formatting for id tagged --- src/haz3lcore/lang/term/IdTagged.re | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/haz3lcore/lang/term/IdTagged.re b/src/haz3lcore/lang/term/IdTagged.re index 3bf449633e..200be8a4ab 100644 --- a/src/haz3lcore/lang/term/IdTagged.re +++ b/src/haz3lcore/lang/term/IdTagged.re @@ -15,10 +15,10 @@ type t('a) = { }; // To be used if you want to remove the id from the debug output -let pp: ((Format.formatter, 'a) => unit, Format.formatter, t('a)) => unit = - (fmt_a, formatter, ta) => { - fmt_a(formatter, ta.term); - }; +// let pp: ((Format.formatter, 'a) => unit, Format.formatter, t('a)) => unit = +// (fmt_a, formatter, ta) => { +// fmt_a(formatter, ta.term); +// }; let fresh = term => { {ids: [Id.mk()], copied: false, term}; };