Remove label from error raising helper
[tiger.ml.git] / compiler / src / lib / tiger / tiger_error.ml
index eb2c177..9e0d16a 100644 (file)
@@ -2,6 +2,6 @@ module Pos = Tiger_position
 
 exception T of string
 
-let exn ~pos ~msg =
+let exn ~pos msg =
   let msg = Printf.sprintf "Error: %s. In %s." msg (Pos.to_string pos) in
   raise (T msg)
This page took 0.027378 seconds and 4 git commands to generate.