summaryrefslogtreecommitdiff
path: root/src/context
diff options
context:
space:
mode:
authorFrançois Bobot <francois@bobot.eu>2012-06-22 15:11:11 +0000
committerFrançois Bobot <francois@bobot.eu>2012-06-22 15:11:11 +0000
commitdbd59549e5e48118fdac71048de0a37059c1d5a1 (patch)
tree5f85b0c8382605cf48cd783fdfffbb34158fe9a9 /src/context
parenteaa2d2f4311ed2830011835ab9b21ad54f0560f6 (diff)
Parser: add the possibility to bind at level 0.
Diffstat (limited to 'src/context')
-rw-r--r--src/context/cdhashset.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/context/cdhashset.h b/src/context/cdhashset.h
index 777bbc94b..bf1f7d097 100644
--- a/src/context/cdhashset.h
+++ b/src/context/cdhashset.h
@@ -68,6 +68,10 @@ public:
return super::insert(v, v);
}
+ void insertAtContextLevelZero(const V& v) {
+ return super::insertAtContextLevelZero(v, v);
+ }
+
bool contains(const V& v) {
return find(v) != end();
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback