From cb9ea47e7825b5073d4d645afb94f6326cb7cf4d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 6 Sep 2009 12:52:53 +0200 Subject: Start the libcutl repository --- cutl/compiler/context.cxx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 cutl/compiler/context.cxx (limited to 'cutl/compiler/context.cxx') diff --git a/cutl/compiler/context.cxx b/cutl/compiler/context.cxx new file mode 100644 index 0000000..da31d6e --- /dev/null +++ b/cutl/compiler/context.cxx @@ -0,0 +1,23 @@ +// file : cutl/compiler/context.cxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009 Code Synthesis Tools CC +// license : MIT; see accompanying LICENSE file + +#include + +namespace cutl +{ + namespace compiler + { + void context:: + remove (char const* key) + { + map::iterator i (map_.find (key)); + + if (i == map_.end ()) + throw no_entry (); + + map_.erase (i); + } + } +} -- cgit v1.1