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