diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-09-12 03:38:00 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-09-12 03:38:00 +0000 |
commit | f99c44d3c079ff2a1b403047d1b244f34b9fe75d (patch) | |
tree | 3f6bddeded7904934f7482f754d776ce8c0cae00 /performance-tests | |
parent | f324b831958855fb9f9f8030d9ae9fadcb410b82 (diff) | |
download | ATCD-f99c44d3c079ff2a1b403047d1b244f34b9fe75d.tar.gz |
*** empty log message ***
Diffstat (limited to 'performance-tests')
-rw-r--r-- | performance-tests/Synch-Benchmarks/synch_driver.cpp | 4 |
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; |