aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/micromega/persistent_cache.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/micromega/persistent_cache.ml b/plugins/micromega/persistent_cache.ml
index 21178a64a5..67ceb2d9c5 100644
--- a/plugins/micromega/persistent_cache.ml
+++ b/plugins/micromega/persistent_cache.ml
@@ -125,7 +125,7 @@ module PHashtable (Key : HashedType) : PHashtable with type key = Key.t = struct
let outch = out_channel_of_descr out in
do_under_lock Write out (fun () ->
Table.iter
- (fun k e -> Marshal.to_channel outch (k, e) [Marshal.No_sharing])
+ (fun k e -> Marshal.to_channel outch (k, e) [])
htbl;
flush outch);
{outch; htbl}
@@ -135,7 +135,7 @@ module PHashtable (Key : HashedType) : PHashtable with type key = Key.t = struct
let fd = descr_of_out_channel outch in
Table.add tbl k e;
do_under_lock Write fd (fun _ ->
- Marshal.to_channel outch (k, e) [Marshal.No_sharing];
+ Marshal.to_channel outch (k, e) [];
flush outch)
let find t k =