summaryrefslogtreecommitdiff
path: root/xsd/processing
diff options
context:
space:
mode:
Diffstat (limited to 'xsd/processing')
-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).