aboutsummaryrefslogtreecommitdiff
path: root/lib/loc.ml
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2017-01-17 14:23:53 +0100
committerEmilio Jesus Gallego Arias2017-04-24 23:58:23 +0200
commit158f40db9482ead89befbf9bc9ad45ff8a60b75f (patch)
tree92587db07ddf50e2db16b270966115fa3d66d64a /lib/loc.ml
parentbe83b52cf50ed4c596e40cfd52da03258a7a4a18 (diff)
[location] Switch glob_constr to Loc.located
Diffstat (limited to 'lib/loc.ml')
-rw-r--r--lib/loc.ml1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/loc.ml b/lib/loc.ml
index 8d7432ff4b..2a785fac48 100644
--- a/lib/loc.ml
+++ b/lib/loc.ml
@@ -62,6 +62,7 @@ type 'a located = t * 'a
let to_pair x = x
let tag ?loc x = Option.default ghost loc, x
+let obj (_,x) = x
let with_loc f (loc, x) = f ~loc x
let with_unloc f (_,x) = f x