1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
--- ./classes/src/ArtsInterfaceMatrixEntry.cc.orig Mon Oct 2 13:05:25 2000
+++ ./classes/src/ArtsInterfaceMatrixEntry.cc Wed Sep 25 16:38:10 2002
@@ -214,7 +214,7 @@
//.........................................................................
//
//-------------------------------------------------------------------------
-uint32_t ArtsInterfaceMatrixEntry::Length(uint8_t version = 0) const
+uint32_t ArtsInterfaceMatrixEntry::Length(uint8_t version) const
{
uint32_t length;
length = (sizeof(this->_descriptor) +
@@ -231,11 +231,11 @@
//.........................................................................
//
//-------------------------------------------------------------------------
-istream & ArtsInterfaceMatrixEntry::read(istream& is, uint8_t version = 0)
+istream & ArtsInterfaceMatrixEntry::read(istream& is, uint8_t version)
{
uint8_t bytesize, pktsize, srcsize, dstsize;
- is.read(&this->_descriptor,sizeof(this->_descriptor));
+ is.read((char *)&this->_descriptor,sizeof(this->_descriptor));
srcsize = (this->_descriptor & 0x01) + 1;
dstsize = ((this->_descriptor >> 1) & 0x01) + 1;
@@ -255,7 +255,7 @@
//.........................................................................
//
//-------------------------------------------------------------------------
-int ArtsInterfaceMatrixEntry::read(int fd, uint8_t version = 0)
+int ArtsInterfaceMatrixEntry::read(int fd, uint8_t version)
{
uint8_t bytesize, pktsize, srcsize, dstsize;
int rc;
@@ -307,11 +307,11 @@
//
//-------------------------------------------------------------------------
ostream & ArtsInterfaceMatrixEntry::write(ostream& os,
- uint8_t version = 0) const
+ uint8_t version) const
{
uint8_t bytesize, pktsize, srcsize, dstsize;
- os.write(&this->_descriptor,sizeof(this->_descriptor));
+ os.write((char *)&this->_descriptor,sizeof(this->_descriptor));
srcsize = (this->_descriptor & 0x01) + 1;
dstsize = ((this->_descriptor >> 1) & 0x01) + 1;
@@ -331,7 +331,7 @@
//.........................................................................
//
//-------------------------------------------------------------------------
-int ArtsInterfaceMatrixEntry::write(int fd, uint8_t version = 0) const
+int ArtsInterfaceMatrixEntry::write(int fd, uint8_t version) const
{
uint8_t bytesize, pktsize, srcsize, dstsize;
int rc;
|