diff options
author | bala <balanatarajan@users.noreply.github.com> | 1999-06-25 18:41:09 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 1999-06-25 18:41:09 +0000 |
commit | 1001c1fbe12bc825684b29d54193b7a3af7d6aaa (patch) | |
tree | 08209f3489cb025f680ac4eacf3e1d4588913545 /TAO/tao/Context.i | |
parent | 5766f3c1378d37da02d7169e3a902678091f7275 (diff) | |
download | ATCD-1001c1fbe12bc825684b29d54193b7a3af7d6aaa.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/tao/Context.i')
-rw-r--r-- | TAO/tao/Context.i | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/TAO/tao/Context.i b/TAO/tao/Context.i index 92ec9a59340..63fd1441608 100644 --- a/TAO/tao/Context.i +++ b/TAO/tao/Context.i @@ -214,6 +214,14 @@ CORBA_ContextList::_nil (void) return (CORBA_ContextList_ptr)0; } +ACE_INLINE CORBA_ContextList * +CORBA_ContextList::_duplicate (CORBA_ContextList* x) +{ + if (x != 0) + x->_incr_refcnt (); + return x; +} + // ************************************************************* // Inline operations for class CORBA_ContextList_var // ************************************************************* |