aboutsummaryrefslogtreecommitdiff
path: root/libcutl/compiler/type-info.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-12-16 20:29:05 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-02-24 16:40:04 +0300
commit8e761289a2446367267c6c0d9a26e734f0f78306 (patch)
treefb495d8c18801f271d124ee48731f10df396ca89 /libcutl/compiler/type-info.cxx
parent4c8104756b92b9fa16b3a725e8a6aa620dfd606e (diff)
Get rid of legacy build systems and rename cutl/ to libcutl/
Diffstat (limited to 'libcutl/compiler/type-info.cxx')
-rw-r--r--libcutl/compiler/type-info.cxx29
1 files changed, 29 insertions, 0 deletions
diff --git a/libcutl/compiler/type-info.cxx b/libcutl/compiler/type-info.cxx
new file mode 100644
index 0000000..cefd451
--- /dev/null
+++ b/libcutl/compiler/type-info.cxx
@@ -0,0 +1,29 @@
+// file : libcutl/compiler/type-info.cxx
+// license : MIT; see accompanying LICENSE file
+
+#include <libcutl/compiler/type-info.hxx>
+
+namespace cutl
+{
+ namespace compiler
+ {
+ using namespace bits;
+
+ type_info const&
+ lookup (type_id const& tid)
+ {
+ type_info_map::const_iterator i (type_info_map_->find (tid));
+
+ if (i == type_info_map_->end ())
+ throw no_type_info ();
+
+ return i->second;
+ }
+
+ void
+ insert (type_info const& ti)
+ {
+ type_info_map_->insert (type_info_map::value_type (ti.type_id (), ti));
+ }
+ }
+}