summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/tree/parsing.txx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsd/xsd/cxx/tree/parsing.txx')
-rw-r--r--libxsd/xsd/cxx/tree/parsing.txx13
1 files changed, 6 insertions, 7 deletions
diff --git a/libxsd/xsd/cxx/tree/parsing.txx b/libxsd/xsd/cxx/tree/parsing.txx
index 642307a..8da53b9 100644
--- a/libxsd/xsd/cxx/tree/parsing.txx
+++ b/libxsd/xsd/cxx/tree/parsing.txx
@@ -638,22 +638,22 @@ namespace xsd
// idref
//
- template <typename T, typename C, typename B>
- idref<T, C, B>::
+ template <typename C, typename B, typename T>
+ idref<C, B, T>::
idref (const xercesc::DOMElement& e, flags f, container* c)
: base_type (e, f, c), identity_ (*this)
{
}
- template <typename T, typename C, typename B>
- idref<T, C, B>::
+ template <typename C, typename B, typename T>
+ idref<C, B, T>::
idref (const xercesc::DOMAttr& a, flags f, container* c)
: base_type (a, f , c), identity_ (*this)
{
}
- template <typename T, typename C, typename B>
- idref<T, C, B>::
+ template <typename C, typename B, typename T>
+ idref<C, B, T>::
idref (const std::basic_string<C>& s,
const xercesc::DOMElement* e,
flags f,
@@ -663,7 +663,6 @@ namespace xsd
}
-
// idrefs
//
template <typename C, typename B, typename idref>