summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-10-28 07:46:18 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-10-28 07:46:18 +0000
commitb02c515a2f513cb9089939610e6cfe31d4a07332 (patch)
tree2899b6a339b455a9e03ff581ab5c683c2521906c /TAO/tao/PortableServer
parentfd29b8f755fd74586c2eb6ee65da65301dd33777 (diff)
downloadATCD-b02c515a2f513cb9089939610e6cfe31d4a07332.tar.gz
Thu Oct 28 07:41:02 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/RTScheduling/DT_Creator.h: * examples/RTScheduling/Fixed_Priority_Scheduler/test.h: * examples/RTScheduling/MIF_Scheduler/test.h: * orbsvcs/examples/ImR/Advanced/TestServer.h: * orbsvcs/orbsvcs/Event/ECG_UDP_Sender.h: * orbsvcs/orbsvcs/Event/EC_Lifetime_Utils_T.h: * orbsvcs/orbsvcs/Event/EC_Lifetime_Utils_T.inl: * orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.h: * orbsvcs/performance-tests/RTEvent/lib/Loopback_Consumer.cpp: * orbsvcs/performance-tests/RTEvent/lib/Send_Task.h: * orbsvcs/performance-tests/RTEvent/lib/Send_Task.cpp: * performance-tests/POA/Demux/demux_test_server.h: * tao/Array_Traits_T.h: * tao/Object_Reference_Traits_T.h: * tao/PortableServer/Servant_var.h: * tao/String_Traits_T.h: * tao/Value_Traits_T.h: * tao/Valuetype/Valuetype_Traits_T.h: * tests/Bug_1020_Basic_Regression/client.cpp: * tests/Bug_1020_Basic_Regression/server.cpp: * tests/Bug_1020_Regression/client.cpp: * tests/Bug_1020_Regression/server.cpp: * tests/Bug_1269_Regression/client.cpp: * tests/Bug_1269_Regression/server.cpp: * tests/Bug_1270_Regression/client.cpp: * tests/Bug_1270_Regression/server.cpp: * tests/Bug_1361_Regression/client.cpp: * tests/Bug_1361_Regression/server.cpp: * tests/Bug_1535_Regression/bug_1535_regression.cpp: * tests/Bug_1551_Regression/Client_Task.h: * tests/Bug_1551_Regression/server.cpp: * tests/Bug_1568_Regression/server.cpp: * tests/Bug_1670_Regression/server.cpp: * tests/Bug_2503_Regression/test_i.cpp: * tests/Bug_2560_Regression/Stock_Factory_i.cpp: * tests/Bug_3647_Regression/backend_server.cpp: * tests/Bug_3647_Regression/middle_server.cpp: Fixed compile errors, removed gcc < 3 support
Diffstat (limited to 'TAO/tao/PortableServer')
-rw-r--r--TAO/tao/PortableServer/Servant_var.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/TAO/tao/PortableServer/Servant_var.h b/TAO/tao/PortableServer/Servant_var.h
index efc8b73c35e..75bd5a97fc6 100644
--- a/TAO/tao/PortableServer/Servant_var.h
+++ b/TAO/tao/PortableServer/Servant_var.h
@@ -115,13 +115,11 @@ namespace PortableServer
/// Compare two Servant_vars for equivalence.
template <class X, class Y>
- bool operator==(Servant_var<X> const & x,
- Servant_var<Y> const & y);
+ bool operator==(Servant_var<X> const & x, Servant_var<Y> const & y);
/// Compare two Servant_vars for non-equivalence.
template <class X, class Y>
- bool operator!=(Servant_var<X> const & x,
- Servant_var<Y> const & y);
+ bool operator!=(Servant_var<X> const & x, Servant_var<Y> const & y);
} // namespace PortableServer