diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-03 20:26:50 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-03 20:26:50 +0000 |
commit | dba27a00c9ead10532fe76a2949bdebf46096fa7 (patch) | |
tree | aa03573cc0478dbd8230a034bb5be8cf72cb233f /TAO | |
parent | 04c4fbcf65cbaa705b486e28f0acef17cd8d91b7 (diff) | |
download | ATCD-dba27a00c9ead10532fe76a2949bdebf46096fa7.tar.gz |
added "class" in friend declarations.
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/tao/Object_Adapter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Object_Adapter.h b/TAO/tao/Object_Adapter.h index a2496e44761..51bea552ab9 100644 --- a/TAO/tao/Object_Adapter.h +++ b/TAO/tao/Object_Adapter.h @@ -374,7 +374,7 @@ public: TAO_Object_Adapter &object_adapter_; }; - friend Non_Servant_Upcall; + friend class Non_Servant_Upcall; class Outstanding_Requests { @@ -404,7 +404,7 @@ public: TAO_Object_Adapter &object_adapter_; }; - friend Outstanding_Requests; + friend class Outstanding_Requests; class Single_Threaded_POA_Lock { @@ -430,7 +430,7 @@ public: PortableServer::Servant servant_; }; - friend Single_Threaded_POA_Lock; + friend class Single_Threaded_POA_Lock; }; |