aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/cAst.ml
diff options
context:
space:
mode:
authorGravatar Matej Košík <matej.kosik@inria.fr>2017-04-28 14:31:14 +0200
committerGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2017-05-24 17:41:35 +0200
commit209956322367e5a4a4c8c78c053ea9352a9a16c8 (patch)
treecba5cbe9d65d51a2c351bea8c1b2f9714d561d71 /lib/cAst.ml
parent6f2c19a1054ce58927dfa5b33131c3665fd5fdf8 (diff)
[location] Renaming "CAst.ast" to "CAst.t"
Diffstat (limited to 'lib/cAst.ml')
-rw-r--r--lib/cAst.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cAst.ml b/lib/cAst.ml
index f0a405776..301a6bac8 100644
--- a/lib/cAst.ml
+++ b/lib/cAst.ml
@@ -7,7 +7,7 @@
(************************************************************************)
(** The ast type contains generic metadata for AST nodes. *)
-type 'a ast = {
+type 'a t = {
v : 'a;
loc : Loc.t option;
}