]> matita.cs.unibo.it Git - helm.git/commitdiff
Functors must be applied using parentheses around the argument in OCaml.
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Wed, 4 Feb 2004 22:55:12 +0000 (22:55 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Wed, 4 Feb 2004 22:55:12 +0000 (22:55 +0000)
CamlP4 accepts a looser syntax ;-(

helm/ocaml/cic_proof_checking/cicReductionMachine.ml

index 44630ec515bb507fa23fbfda8533b37662599581..4e92e6ebc9f2586b4356befdb71927cdb3a926a1 100644 (file)
@@ -767,7 +767,7 @@ module R = Reduction ClosuresOnStackByValueFromEnvOrEnsStrategy;;
 module R = Reduction
  ClosuresOnStackByValueFromEnvOrEnsByNameOnConstantsStrategy;;
 *)
-module R = Reduction ClosuresOnStackByValueFromEnvOrEnsStrategy;;
+module R = Reduction(ClosuresOnStackByValueFromEnvOrEnsStrategy);;
 
 let whd = R.whd;;