summaryrefslogtreecommitdiff
path: root/performance-tests
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-09-12 03:38:00 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-09-12 03:38:00 +0000
commitf99c44d3c079ff2a1b403047d1b244f34b9fe75d (patch)
tree3f6bddeded7904934f7482f754d776ce8c0cae00 /performance-tests
parentf324b831958855fb9f9f8030d9ae9fadcb410b82 (diff)
downloadATCD-f99c44d3c079ff2a1b403047d1b244f34b9fe75d.tar.gz
*** empty log message ***
Diffstat (limited to 'performance-tests')
-rw-r--r--performance-tests/Synch-Benchmarks/synch_driver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/performance-tests/Synch-Benchmarks/synch_driver.cpp b/performance-tests/Synch-Benchmarks/synch_driver.cpp
index f921edb19fe..5ea17ff38d9 100644
--- a/performance-tests/Synch-Benchmarks/synch_driver.cpp
+++ b/performance-tests/Synch-Benchmarks/synch_driver.cpp
@@ -102,12 +102,12 @@ Benchmark_Test::init (int argc, char **argv)
// Iteratively execute each service loaded in from the svc.conf
// file.
- for (const ACE_Service_Record *sr;
+ for (const ACE_Service_Type *sr;
sri.next (sr) != 0;
sri.advance ())
{
// This would greatly benefit from RTTI typesafe downcasting...
- const ACE_Service_Type *type = sr->type ();
+ const ACE_Service_Type_Impl *type = sr->type ();
const void *obj = type->object ();
ACE_Service_Object *so = (ACE_Service_Object *) obj;
Benchmark *bp = (Benchmark *) so;