lmi-commits
[Top][All Lists]
Advanced

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

[lmi-commits] [lmi] master fdb47029 08/27: Fix dblize()ation in commente


From: Greg Chicares
Subject: [lmi-commits] [lmi] master fdb47029 08/27: Fix dblize()ation in commented-out code
Date: Mon, 25 Apr 2022 12:56:15 -0400 (EDT)

branch: master
commit fdb47029762526da12121de40b81263a689b46d2
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]