diff options
author | bala <balanatarajan@users.noreply.github.com> | 2003-12-12 14:39:46 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2003-12-12 14:39:46 +0000 |
commit | d32bd9c242552a214f0515e140f61fcf9c24d9f4 (patch) | |
tree | 3c56d92ceebcfb240b77bf506f351011228fa0e3 | |
parent | e4810543c4a532c44e65f2a81a00de2e4c5abcc1 (diff) | |
download | ATCD-d32bd9c242552a214f0515e140f61fcf9c24d9f4.tar.gz |
ChangeLogTag:Fri Dec 12 08:38:14 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r-- | TAO/ChangeLog | 6 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LeastLoaded.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index eb135034086..0aa9af9aa73 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,9 @@ +Fri Dec 12 08:38:14 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu> + + * orbsvcs/orbsvcs/LoadBalancing/LB_LeastLoaded.h: + + Used a simple cast during initializing a float from a double. + Fri Dec 12 08:37:04 2003 Chad Elliott <elliott_c@ociweb.com> * orbsvcs/orbsvcs/PortableGroup/PG_Location_Hash.h: diff --git a/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LeastLoaded.h b/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LeastLoaded.h index e11f443c091..a3a6740b5cc 100644 --- a/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LeastLoaded.h +++ b/TAO/orbsvcs/orbsvcs/LoadBalancing/LB_LeastLoaded.h @@ -58,7 +58,7 @@ namespace TAO_LB * residing at the location corresponding to one of the two loads * will be selected at random. */ - const CORBA::Float LL_DEFAULT_LOAD_PERCENT_DIFF_CUTOFF = 0.01; // 1% + const CORBA::Float LL_DEFAULT_LOAD_PERCENT_DIFF_CUTOFF = (CORBA::Float) 0.01; // 1% //@} } |