We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e998cc1 commit 02b98c1Copy full SHA for 02b98c1
src/memo/memo.ml
@@ -1,4 +1,4 @@
1
-open !Stdune
+open! Stdune
2
open Fiber.O
3
4
module type Input = Memo_intf.Input
@@ -212,7 +212,7 @@ let push_stack_frame frame f =
212
213
let dump_stack () =
214
let stack = get_call_stack () in
215
- Printf.printf "Memoized function stack:\n";
+ Printf.eprintf "Memoized function stack:\n";
216
List.iter stack ~f:(fun st ->
217
Printf.eprintf " %s %s\n"
218
(Stack_frame.name st)
0 commit comments