aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/hybrid/xdr/istream.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/cxx/hybrid/xdr/istream.hxx')
-rw-r--r--libxsde/xsde/cxx/hybrid/xdr/istream.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/libxsde/xsde/cxx/hybrid/xdr/istream.hxx b/libxsde/xsde/cxx/hybrid/xdr/istream.hxx
index 559b136..c5c2f8b 100644
--- a/libxsde/xsde/cxx/hybrid/xdr/istream.hxx
+++ b/libxsde/xsde/cxx/hybrid/xdr/istream.hxx
@@ -154,22 +154,22 @@ namespace xsde
#ifdef XSDE_EXCEPTIONS
template <typename T>
- void operator>> (ixdrstream&, pod_seq<T>&);
+ void operator>> (ixdrstream&, pod_sequence<T>&);
template <typename T>
- void operator>> (ixdrstream&, fix_seq<T>&);
+ void operator>> (ixdrstream&, fix_sequence<T>&);
template <typename T>
- void operator>> (ixdrstream&, var_seq<T>&);
+ void operator>> (ixdrstream&, var_sequence<T>&);
#else
template <typename T>
- bool operator>> (ixdrstream&, pod_seq<T>&);
+ bool operator>> (ixdrstream&, pod_sequence<T>&);
template <typename T>
- bool operator>> (ixdrstream&, fix_seq<T>&);
+ bool operator>> (ixdrstream&, fix_sequence<T>&);
template <typename T>
- bool operator>> (ixdrstream&, var_seq<T>&);
+ bool operator>> (ixdrstream&, var_sequence<T>&);
#endif
}
}