chore: be robust to deprecations

This commit is contained in:
Simon Cruanes 2019-01-30 15:44:56 -06:00 committed by Guillaume Bury
parent f62fa88b0f
commit 65a8a65095
3 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@
(public_name msat)
(libraries sequence)
(synopsis "core data structures and algorithms for msat")
(flags :standard -w +a-4-42-44-48-50-58-32-60@8 -color always -safe-string)
(flags :standard -warn-error -3 -w +a-4-42-44-48-50-58-32-60@8 -color always -safe-string)
(ocamlopt_flags :standard -O3 -bin-annot
-unbox-closures -unbox-closures-factor 20)
)

View file

@ -4,7 +4,7 @@
(name main)
;(package msat)
(libraries containers msat msat_sat msat.backend)
(flags :standard -w +a-4-42-44-48-50-58-32-60@8 -color always -safe-string -open Msat)
(flags :standard -warn-error -3 -w +a-4-42-44-48-50-58-32-60@8 -color always -safe-string -open Msat)
(ocamlopt_flags :standard -O3 -color always
-unbox-closures -unbox-closures-factor 20)
)

View file

@ -4,7 +4,7 @@
(public_name msat.sat)
(synopsis "purely boolean interface to Msat")
(libraries msat)
(flags :standard -w +a-4-42-44-48-50-58-32-60@8 -color always -safe-string -open Msat)
(flags :standard -warn-error -3 -w +a-4-42-44-48-50-58-32-60@8 -color always -safe-string -open Msat)
(ocamlopt_flags :standard -O3 -color always
-unbox-closures -unbox-closures-factor 20)
)