diff options
| author | Emilio Jesus Gallego Arias | 2017-12-05 12:34:36 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2017-12-09 19:01:46 +0100 |
| commit | d0f89f8c59cda2e7e74fec693e511e910fbc0434 (patch) | |
| tree | d72a404ba6d47f7b29b80775c0731cd765d448dc /proofs | |
| parent | 319a3c230e9f9ec5a8a5bea9e07b6b8d17444ac9 (diff) | |
[lib] Rename Profile to CProfile
New module introduced in OCaml 4.05 I think, can create problems when
linking with the OCaml toplevel for `Drop`.
Diffstat (limited to 'proofs')
| -rw-r--r-- | proofs/refiner.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proofs/refiner.ml b/proofs/refiner.ml index 3e3313eb57..cd2b109061 100644 --- a/proofs/refiner.ml +++ b/proofs/refiner.ml @@ -30,8 +30,8 @@ let refiner pr goal_sigma = (* Profiling refiner *) let refiner = if Flags.profile then - let refiner_key = Profile.declare_profile "refiner" in - Profile.profile2 refiner_key refiner + let refiner_key = CProfile.declare_profile "refiner" in + CProfile.profile2 refiner_key refiner else refiner (*********************) |
