summaryrefslogtreecommitdiff
path: root/src/lib/reader.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/reader.ml')
-rw-r--r--src/lib/reader.ml4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/reader.ml b/src/lib/reader.ml
index 52339a2..45ea69e 100644
--- a/src/lib/reader.ml
+++ b/src/lib/reader.ml
@@ -1,7 +1,5 @@
open StdLabels
-module P = Parser
-module Parser = P.Make(Sounds)
module I = Parser.MenhirInterpreter
let sound_to_string
@@ -9,7 +7,7 @@ let sound_to_string
= fun t ->
let buff = Buffer.create 16 in
List.iter t
- ~f:(fun f -> Buffer.add_string buff (Sounds.repr f));
+ ~f:(fun f -> Buffer.add_string buff (Sounds.repr (module Sounds.Repr) f));
Buffer.contents buff
let succeed (res : Sounds.t list) =