diff options
author | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-01-28 15:36:15 +0000 |
---|---|---|
committer | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-01-28 15:36:15 +0000 |
commit | 905e4b711051a3f0003cd024d65af2f13d2d2c75 (patch) | |
tree | fd46d9924e4977b94da089e571649ee17cc7e8df /TAO/tests/Policies | |
parent | 7884b918f8014ae96c0b4b604575079b54335724 (diff) | |
download | ATCD-905e4b711051a3f0003cd024d65af2f13d2d2c75.tar.gz |
ChangeLogTag: Fri Jan 28 07:18:10 2005 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'TAO/tests/Policies')
-rw-r--r-- | TAO/tests/Policies/Manipulation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/Policies/Manipulation.cpp b/TAO/tests/Policies/Manipulation.cpp index ac76f622273..c6bfc107291 100644 --- a/TAO/tests/Policies/Manipulation.cpp +++ b/TAO/tests/Policies/Manipulation.cpp @@ -304,10 +304,10 @@ Manipulation::svc (void) { #ifndef ACE_LACKS_LONGLONG_T ACE_RANDR_TYPE seed = - ACE_static_cast (ACE_RANDR_TYPE, ACE_OS::gethrtime ()); + static_cast<ACE_RANDR_TYPE> (ACE_OS::gethrtime ()); #else ACE_RANDR_TYPE seed = - ACE_static_cast (ACE_RANDR_TYPE, ACE_OS::gethrtime().lo()); + static_cast<ACE_RANDR_TYPE> (ACE_OS::gethrtime().lo()); #endif CORBA::Object_var object = this->orb_->resolve_initial_references ("ORBPolicyManager" |