summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/tree/serialization.txx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsd/xsd/cxx/tree/serialization.txx')
-rw-r--r--libxsd/xsd/cxx/tree/serialization.txx12
1 files changed, 6 insertions, 6 deletions
diff --git a/libxsd/xsd/cxx/tree/serialization.txx b/libxsd/xsd/cxx/tree/serialization.txx
index 322febe..29364f4 100644
--- a/libxsd/xsd/cxx/tree/serialization.txx
+++ b/libxsd/xsd/cxx/tree/serialization.txx
@@ -533,23 +533,23 @@ namespace xsd
// idref
//
- template <typename T, typename C, typename B>
+ template <typename C, typename B, typename T>
inline void
- operator<< (xercesc::DOMElement& e, const idref<T, C, B>& x)
+ operator<< (xercesc::DOMElement& e, const idref<C, B, T>& x)
{
bits::insert<C> (e, x);
}
- template <typename T, typename C, typename B>
+ template <typename C, typename B, typename T>
inline void
- operator<< (xercesc::DOMAttr& a, const idref<T, C, B>& x)
+ operator<< (xercesc::DOMAttr& a, const idref<C, B, T>& x)
{
bits::insert<C> (a, x);
}
- template <typename T, typename C, typename B>
+ template <typename C, typename B, typename T>
inline void
- operator<< (list_stream<C>& ls, const idref<T, C, B>& x)
+ operator<< (list_stream<C>& ls, const idref<C, B, T>& x)
{
ls.os_ << x;
}