Changeset 414 for cpp/frams/util/extvalue.cpp
- Timestamp:
- 07/13/15 02:28:59 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/util/extvalue.cpp
r375 r414 448 448 { 449 449 case TDouble: 450 logPrintf("ExtValue", "add", LOG_WARN, "Adding %s to %s", src.typeAndValue().c_str(), typeAndValue().c_str());451 450 setDouble(double(getInt()) + src.getDouble()); 452 451 return; … … 502 501 return; 503 502 case TDouble: 504 logPrintf("ExtValue", "subtract", LOG_WARN, "Subtracting %s from %s", src.typeAndValue().c_str(), typeAndValue().c_str());505 503 setDouble(double(getInt()) - src.getDouble()); 506 504 return; … … 535 533 return; 536 534 case TDouble: 537 logPrintf("ExtValue", "multiply", LOG_WARN, "Multiplying %s by %s", typeAndValue().c_str(), src.typeAndValue().c_str());538 535 setDouble(double(getInt())*src.getDouble()); 539 536 return; … … 651 648 return; 652 649 case TDouble: 653 logPrintf("ExtValue", "divide", LOG_WARN, "Dividing %s by %s", typeAndValue().c_str(), src.typeAndValue().c_str());654 650 divDouble(src.ddata()); 655 651 return;
Note: See TracChangeset
for help on using the changeset viewer.