diff options
Diffstat (limited to 'TAO/utils/logWalker/PeerObject.h')
-rw-r--r-- | TAO/utils/logWalker/PeerObject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/utils/logWalker/PeerObject.h b/TAO/utils/logWalker/PeerObject.h index dcb15acd81c..cffcfe1c6e9 100644 --- a/TAO/utils/logWalker/PeerObject.h +++ b/TAO/utils/logWalker/PeerObject.h @@ -19,7 +19,7 @@ typedef ACE_Unbounded_Queue_Iterator<Invocation*> InvocationIter; class PeerObject { public: - PeerObject (long ident, const char *name, PeerProcess *parent); + PeerObject (long ident, const char *name, PeerProcess * ); virtual ~PeerObject (void); void add_invocation (Invocation *inv); @@ -31,7 +31,7 @@ public: private: long ident_; ACE_CString name_; - PeerProcess *parent_; + //PeerProcess *parent_; Invocations invocations_; }; |