diff options
Diffstat (limited to 'net/cflowd/files/patch-classes::include::CflowdNetMatrixKey.hh')
-rw-r--r-- | net/cflowd/files/patch-classes::include::CflowdNetMatrixKey.hh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/net/cflowd/files/patch-classes::include::CflowdNetMatrixKey.hh b/net/cflowd/files/patch-classes::include::CflowdNetMatrixKey.hh deleted file mode 100644 index 3b3225191b57..000000000000 --- a/net/cflowd/files/patch-classes::include::CflowdNetMatrixKey.hh +++ /dev/null @@ -1,26 +0,0 @@ ---- classes/include/CflowdNetMatrixKey.hh.orig Fri Aug 29 20:35:27 2003 -+++ classes/include/CflowdNetMatrixKey.hh Fri Aug 29 20:36:00 2003 -@@ -191,9 +191,9 @@ - inline istream & read(istream & is) - { - g_CfdArtsPrimitive.ReadIpv4Network(is,this->_src,sizeof(this->_src)); -- is.read(&(this->_srcMaskLen),sizeof(this->_srcMaskLen)); -+ is.read((char *)&(this->_srcMaskLen),sizeof(this->_srcMaskLen)); - g_CfdArtsPrimitive.ReadIpv4Network(is,this->_dst,sizeof(this->_dst)); -- is.read(&(this->_dstMaskLen),sizeof(this->_dstMaskLen)); -+ is.read((char *)&(this->_dstMaskLen),sizeof(this->_dstMaskLen)); - - return(is); - } -@@ -263,9 +263,9 @@ - inline ostream & write(ostream & os) const - { - g_CfdArtsPrimitive.WriteIpv4Network(os,this->_src,sizeof(this->_src)); -- os.write(&(this->_srcMaskLen),sizeof(this->_srcMaskLen)); -+ os.write((char *)&(this->_srcMaskLen),sizeof(this->_srcMaskLen)); - g_CfdArtsPrimitive.WriteIpv4Network(os,this->_dst,sizeof(this->_dst)); -- os.write(&(this->_dstMaskLen),sizeof(this->_dstMaskLen)); -+ os.write((char *)&(this->_dstMaskLen),sizeof(this->_dstMaskLen)); - return(os); - } - |