aboutsummaryrefslogtreecommitdiff
path: root/cutl/compiler/context.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cutl/compiler/context.hxx')
-rw-r--r--cutl/compiler/context.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/cutl/compiler/context.hxx b/cutl/compiler/context.hxx
index 6a861e4..586fa6d 100644
--- a/cutl/compiler/context.hxx
+++ b/cutl/compiler/context.hxx
@@ -99,6 +99,15 @@ namespace cutl
set (std::string const& key, X const& value);
void
+ set (char const* key, container::any const& value)
+ {
+ return set (std::string (key), value);
+ }
+
+ void
+ set (std::string const& key, container::any const& value);
+
+ void
remove (char const* key)
{
remove (std::string (key));