summaryrefslogtreecommitdiff
path: root/xsd/processing/inheritance
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-06-16 11:21:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-06-16 11:21:02 +0200
commit4d202fe107036830188ba981e4f4321d2210d6ee (patch)
tree9cdaae444a13bbe57a4db8886b5544fb2c9b102e /xsd/processing/inheritance
parentd08c389e751779cd62a649eecb9219ee9037bdb0 (diff)
Handle ID/IDREF templates in inheritance and polymorphism
Diffstat (limited to 'xsd/processing/inheritance')
-rw-r--r--xsd/processing/inheritance/processor.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/xsd/processing/inheritance/processor.cxx b/xsd/processing/inheritance/processor.cxx
index d92ea6c..032803b 100644
--- a/xsd/processing/inheritance/processor.cxx
+++ b/xsd/processing/inheritance/processor.cxx
@@ -242,6 +242,13 @@ namespace Processing
Dep const& dep (*i);
Type& t (dep.type);
+ // Ignore ID/IDREF templates.
+ //
+ if (!t.named_p () &&
+ (t.is_a<SemanticGraph::Fundamental::Id> () ||
+ t.is_a<SemanticGraph::Fundamental::IdRef> ()))
+ continue;
+
// We won't be able to generate compilable code in case of a
// dependency on ourselves (e.g., a member element with
// anonymous type that inherits from us).