mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
21 lines
576 B
Plaintext
21 lines
576 B
Plaintext
--- calc/rpn.hh.orig Sun Nov 28 21:28:00 1999
|
|
+++ calc/rpn.hh Sun Nov 28 21:28:25 1999
|
|
@@ -108,7 +108,7 @@
|
|
Ref start;
|
|
Ref end;
|
|
|
|
- normalize();
|
|
+ void normalize();
|
|
};
|
|
|
|
|
|
@@ -145,7 +145,7 @@
|
|
contents.string_val[0] = 0;
|
|
contents.error_code = NO_ERROR;}
|
|
~Stack_elem() {delete [] contents.string_val;}
|
|
- operator=(const Stack_elem &right) {
|
|
+ void operator=(const Stack_elem &right) {
|
|
type = right.type;
|
|
contents.fp_val = right.contents.fp_val;
|
|
contents.ref_val = right.contents.ref_val;
|