aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Interp.ml
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2020-02-20 09:41:16 +0100
committerXavier Leroy <xavierleroy@users.noreply.github.com>2020-02-21 13:29:39 +0100
commit3bffda879e214345635e575a696e8f184bef0e55 (patch)
treea8bc2d0c0be60b597f4add91fccef6df58eb79a1 /driver/Interp.ml
parent8f8a4135be4786a04b781bdf669e642d8383d91a (diff)
downloadcompcert-kvx-3bffda879e214345635e575a696e8f184bef0e55.tar.gz
compcert-kvx-3bffda879e214345635e575a696e8f184bef0e55.zip
Cosmetic: in OCaml code, write "open! Module" instead of "open !Module"
"open!" is the form used in the examples in the OCaml manual. Based on a quick poll it seems to be the preferred form of the OCaml core dev team.
Diffstat (limited to 'driver/Interp.ml')
-rw-r--r--driver/Interp.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/Interp.ml b/driver/Interp.ml
index 3fae70e9..d4286779 100644
--- a/driver/Interp.ml
+++ b/driver/Interp.ml
@@ -15,12 +15,12 @@
open Format
open Camlcoq
open AST
-open !Integers
+open! Integers
open Values
open Memory
open Globalenvs
open Events
-open !Ctypes
+open! Ctypes
open Csyntax
open Csem