From 949a9f572341b6cd07690f0b78b1b1941d320055 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 15 Dec 2020 22:23:46 +0300 Subject: Switch to build2 --- xsd-frontend/semantic-graph/attribute-group.cxx | 33 ------------------------- 1 file changed, 33 deletions(-) delete mode 100644 xsd-frontend/semantic-graph/attribute-group.cxx (limited to 'xsd-frontend/semantic-graph/attribute-group.cxx') diff --git a/xsd-frontend/semantic-graph/attribute-group.cxx b/xsd-frontend/semantic-graph/attribute-group.cxx deleted file mode 100644 index f1a1b7a..0000000 --- a/xsd-frontend/semantic-graph/attribute-group.cxx +++ /dev/null @@ -1,33 +0,0 @@ -// file : xsd-frontend/semantic-graph/attribute-group.cxx -// license : GNU GPL v2 + exceptions; see accompanying LICENSE file - -#include - -#include - -namespace XSDFrontend -{ - namespace SemanticGraph - { - AttributeGroup:: - AttributeGroup (Path const& file, unsigned long line, unsigned long column) - : Node (file, line, column) - { - } - - namespace - { - using compiler::type_info; - - struct AttributeGroupInit - { - AttributeGroupInit () - { - type_info ti (typeid (AttributeGroup)); - ti.add_base (typeid (Scope)); - insert (ti); - } - } attribute_group_init_; - } - } -} -- cgit v1.1