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