lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] valyuta/007 18a91e63 01/10: Fix dblize()ation in com


From: Greg Chicares
Subject: [lmi-commits] [lmi] valyuta/007 18a91e63 01/10: Fix dblize()ation in commented-out code
Date: Tue, 19 Apr 2022 19:00:40 -0400 (EDT)

branch: valyuta/007
commit 18a91e63ba65ef4d1c7305cda394a0a712e06796
Author: Gregory W. Chicares <gchicares@sbcglobal.net>
Commit: Gregory W. Chicares <gchicares@sbcglobal.net>

    Fix dblize()ation in commented-out code
    
    Reenabling the commented-out code without this correction would elicit
    anomalous behavior.
---
 ihs_avmly.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ihs_avmly.cpp b/ihs_avmly.cpp
index 4fc03efa..1eb241a3 100644
--- a/ihs_avmly.cpp
+++ b/ihs_avmly.cpp
@@ -1018,10 +1018,10 @@ void AccountValue::TxSpecAmtChange()
                 ,minimum_specified_amount(0 == Year && 0 == Month, 
TermRiderActive)
                 );
             ActualSpecAmt = round_specamt().c(ActualSpecAmt); // CURRENCY !! 
already rounded?
-            InvariantValues().SpecAmt[j] = ActualSpecAmt;
+            InvariantValues().SpecAmt[j] = dblize(ActualSpecAmt);
             if(!TermIsNotRider)
                 {
-                InvariantValues().TermSpecAmt[j] = TermSpecAmt;
+                InvariantValues().TermSpecAmt[j] = dblize(TermSpecAmt);
                 }
             }
         // Set BOM DB for 7702 and 7702A.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]