aboutsummaryrefslogtreecommitdiff
path: root/cutl/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 /cutl/compiler/type-info.cxx
parent4c8104756b92b9fa16b3a725e8a6aa620dfd606e (diff)
Get rid of legacy build systems and rename cutl/ to libcutl/
Diffstat (limited to 'cutl/compiler/type-info.cxx')
-rw-r--r--cutl/compiler/type-info.cxx29
1 files changed, 0 insertions, 29 deletions
diff --git a/cutl/compiler/type-info.cxx b/cutl/compiler/type-info.cxx
deleted file mode 100644
index 356ade2..0000000
--- a/cutl/compiler/type-info.cxx
+++ /dev/null
@@ -1,29 +0,0 @@
-// file : cutl/compiler/type-info.cxx
-// license : MIT; see accompanying LICENSE file
-
-#include <cutl/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));
- }
- }
-}