aboutsummaryrefslogtreecommitdiffhomepage
path: root/stm/stm.mli
diff options
context:
space:
mode:
authorGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2016-10-18 15:52:11 +0200
committerGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2016-10-18 15:52:11 +0200
commit60354f102ab60c1df24ebb269b51e6664eb70aa3 (patch)
tree44bf3392cc55857d424e0a9691d3139de40827d3 /stm/stm.mli
parentdff1450d43909e8aeaf8ce2db8bc19be42ee1ab1 (diff)
[stm] Fix record field name clash.
PR#173 introduced a record field name clash in `stm.mli`, with duplicate fields `start/stop` for the types `focus` and `static_block_declaration`. We fix by renaming the younger ones (as to minimize code incompatibilities), but other options are possible/could be preferred, however they would be quite more invasive so I think they should be postponed for the day the Stm API is cleaned up.
Diffstat (limited to 'stm/stm.mli')
-rw-r--r--stm/stm.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/stm/stm.mli b/stm/stm.mli
index 37ec1f0a1..b8a2a3859 100644
--- a/stm/stm.mli
+++ b/stm/stm.mli
@@ -139,8 +139,8 @@ module QueryTask : AsyncTaskQueue.Task
module DynBlockData : Dyn.S
type static_block_declaration = {
- start : Stateid.t;
- stop : Stateid.t;
+ block_start : Stateid.t;
+ block_stop : Stateid.t;
dynamic_switch : Stateid.t;
carry_on_data : DynBlockData.t;
}