From 096c88c18aac594779cba1e835b01a8468533c30 Mon Sep 17 00:00:00 2001 From: schmidt Date: Mon, 13 Oct 1997 04:58:40 +0000 Subject: *** empty log message *** --- ace/Synch_T.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ace/Synch_T.h') diff --git a/ace/Synch_T.h b/ace/Synch_T.h index 775288687fa..134e26cb328 100644 --- a/ace/Synch_T.h +++ b/ace/Synch_T.h @@ -169,19 +169,19 @@ public: TYPE operator-= (const TYPE &i); // Atomically decrement by dec. - TYPE operator== (const TYPE &i) const; + int operator== (const TYPE &i) const; // Atomically compare with rhs. - TYPE operator>= (const TYPE &i) const; + int operator>= (const TYPE &i) const; // Atomically check if greater than or equal to rhs. - TYPE operator> (const TYPE &rhs) const; + int operator> (const TYPE &rhs) const; // Atomically check if greater than rhs. - TYPE operator<= (const TYPE &rhs) const; + int operator<= (const TYPE &rhs) const; // Atomically check if less than or equal to rhs. - TYPE operator< (const TYPE &rhs) const; + int operator< (const TYPE &rhs) const; // Atomically check if less than rhs. void operator= (const TYPE &i); -- cgit v1.2.1