From 04e808fe2e4a18c868af334ad4a2c95b0040e58d Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Tue, 31 Oct 2006 09:19:19 +0000 Subject: [PATCH] Bug fixed: inductive types were no longer removed from the environment during a remove_single_obj. --- components/library/librarySync.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/library/librarySync.ml b/components/library/librarySync.ml index a3429840b..5e8ddaf6d 100644 --- a/components/library/librarySync.ml +++ b/components/library/librarySync.ml @@ -173,8 +173,8 @@ let remove_single_obj uri = (fun uri -> ignore (LibraryDb.remove_uri uri); (*CoercGraph.remove_coercion uri;*) - CicEnvironment.remove_obj uri - ) uris_to_remove + ) uris_to_remove ; + CicEnvironment.remove_obj uri (*** GENERATION OF AUXILIARY LEMMAS ***) -- 2.39.2