diff options
author | Chimrod <> | 2023-09-29 14:01:31 +0200 |
---|---|---|
committer | Chimrod <> | 2023-09-29 14:01:31 +0200 |
commit | 3d74fbfd4bd173ae1aac4bf808b00275d48c4be4 (patch) | |
tree | f5b9f350e9944efe1c58f65035574f865e924ba1 /bin/qsp_parser.ml | |
parent | 7d1630227e3a0f35f3aa2c688474a742f23fdd05 (diff) |
Also removed unecessary read_line for windows
Diffstat (limited to 'bin/qsp_parser.ml')
-rw-r--r-- | bin/qsp_parser.ml | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bin/qsp_parser.ml b/bin/qsp_parser.ml index 8ce4d4c..ffb1bd5 100644 --- a/bin/qsp_parser.ml +++ b/bin/qsp_parser.ml @@ -59,9 +59,6 @@ let parse_location : Sedlexing.lexbuf -> filters -> unit = let start_position, _ = Sedlexing.lexing_positions lexbuf in Format.fprintf Format.std_formatter "Location %s@;@[%a@]@." start_position.Lexing.pos_fname pp_result report; - let () = - match Sys.os_type with "Win32" -> ignore @@ read_line () | _ -> () - in ()) | Error e -> let start_position, _ = Sedlexing.lexing_positions lexbuf in |