aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/semantic-graph/list.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd-frontend/semantic-graph/list.cxx')
-rw-r--r--xsd-frontend/semantic-graph/list.cxx33
1 files changed, 0 insertions, 33 deletions
diff --git a/xsd-frontend/semantic-graph/list.cxx b/xsd-frontend/semantic-graph/list.cxx
deleted file mode 100644
index b1f6f30..0000000
--- a/xsd-frontend/semantic-graph/list.cxx
+++ /dev/null
@@ -1,33 +0,0 @@
-// file : xsd-frontend/semantic-graph/list.cxx
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-#include <cutl/compiler/type-info.hxx>
-
-#include <xsd-frontend/semantic-graph/list.hxx>
-
-namespace XSDFrontend
-{
- namespace SemanticGraph
- {
- List::
- List (Path const& file, unsigned long line, unsigned long column)
- : Node (file, line, column)
- {
- }
-
- namespace
- {
- using compiler::type_info;
-
- struct ListInit
- {
- ListInit ()
- {
- type_info ti (typeid (List));
- ti.add_base (typeid (Specialization));
- insert (ti);
- }
- } list_init_;
- }
- }
-}