diff options
Diffstat (limited to 'cpp/include/Ice/LocalObject.h')
-rw-r--r-- | cpp/include/Ice/LocalObject.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/include/Ice/LocalObject.h b/cpp/include/Ice/LocalObject.h index 74703529bb0..34eb0494e2d 100644 --- a/cpp/include/Ice/LocalObject.h +++ b/cpp/include/Ice/LocalObject.h @@ -28,10 +28,10 @@ class ICE_API LocalObject : public ::IceUtil::Shared { public: - bool operator==(const LocalObject&) const; - bool operator!=(const LocalObject&) const; - bool operator<(const LocalObject&) const; - ::Ice::Int ice_hash() const; + virtual bool operator==(const LocalObject&) const; + virtual bool operator!=(const LocalObject&) const; + virtual bool operator<(const LocalObject&) const; + virtual ::Ice::Int ice_hash() const; }; } |