summaryrefslogtreecommitdiff
path: root/cli/semantics/class.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/semantics/class.cxx')
-rw-r--r--cli/semantics/class.cxx39
1 files changed, 0 insertions, 39 deletions
diff --git a/cli/semantics/class.cxx b/cli/semantics/class.cxx
deleted file mode 100644
index 494d5d0..0000000
--- a/cli/semantics/class.cxx
+++ /dev/null
@@ -1,39 +0,0 @@
-// file : cli/semantics/class.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// license : MIT; see accompanying LICENSE file
-
-#include <cutl/compiler/type-info.hxx>
-
-#include <cli/semantics/class.hxx>
-
-namespace semantics
-{
- // type info
- //
- namespace
- {
- struct init
- {
- init ()
- {
- using compiler::type_info;
-
- // inherits
- //
- {
- type_info ti (typeid (inherits));
- ti.add_base (typeid (edge));
- insert (ti);
- }
-
- // class_
- //
- {
- type_info ti (typeid (class_));
- ti.add_base (typeid (scope));
- insert (ti);
- }
- }
- } init_;
- }
-}