aboutsummaryrefslogtreecommitdiff
path: root/deskutils/abacus/files/patch-af
diff options
context:
space:
mode:
Diffstat (limited to 'deskutils/abacus/files/patch-af')
-rw-r--r--deskutils/abacus/files/patch-af16
1 files changed, 16 insertions, 0 deletions
diff --git a/deskutils/abacus/files/patch-af b/deskutils/abacus/files/patch-af
new file mode 100644
index 000000000000..059e602ddab5
--- /dev/null
+++ b/deskutils/abacus/files/patch-af
@@ -0,0 +1,16 @@
+--- include/string.hh.orig Sun Nov 28 21:29:10 1999
++++ include/string.hh Sun Nov 28 21:29:34 1999
+@@ -57,11 +57,11 @@
+ }
+ else ptr = right.ptr;
+ }
+- operator==(const string &right) {
++ int operator==(const string &right) {
+ return
+ strcmp(ptr,right.ptr) != 0 ? 0 : 1;
+ }
+- operator!=(const string &right) {
++ int operator!=(const string &right) {
+ return
+ strcmp(ptr,right.ptr) != 0 ? 1 : 0;
+ }