0_0_15143877_1181.cpp: In function 'int main()':
0_0_15143877_1181.cpp:87:6: error: no match for 'operator=' (operand types are 'HighNum' and 'HighNum')
a = a.stringToHighNum(c);
^
0_0_15143877_1181.cpp:87:6: note: candidate is:
0_0_15143877_1181.cpp:21:11: note: HighNum& HighNum::operator=(HighNum&)
HighNum& operator=(HighNum& src){
^
0_0_15143877_1181.cpp:21:11: note: no known conversion for argument 1 from 'HighNum' to 'HighNum&'
0_0_15143877_1181.cpp:88:6: error: no match for 'operator=' (operand types are 'HighNum' and 'HighNum')
b = b.stringToHighNum(d);
^
0_0_15143877_1181.cpp:88:6: note: candidate is:
0_0_15143877_1181.cpp:21:11: note: HighNum& HighNum::operator=(HighNum&)
HighNum& operator=(HighNum& src){
^
0_0_15143877_1181.cpp:21:11: note: no known conversion for argument 1 from 'HighNum' to 'HighNum&'
0_0_15143877_1181.cpp:94:6: error: no match for 'operator=' (operand types are 'HighNum' and 'HighNum')
a = a + b;
^
0_0_15143877_1181.cpp:94:6: note: candidate is:
0_0_15143877_1181.cpp:21:11: note: HighNum& HighNum::operator=(HighNum&)
HighNum& operator=(HighNum& src){
^
0_0_15143877_1181.cpp:21:11: note: no known conversion for argument 1 from 'HighNum' to 'HighNum&'
|