MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / MyStrToFloat

Function MyStrToFloat

sourcecommon/utils.cpp:1501–1513  ·  view source on GitHub ↗

---------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1499}
1500//---------------------------------------------------------------------------
1501bool MyStrToFloat(String str, double & result)
1502{
1503 bool rv = false;
1504 try
1505 {
1506 MyStrToFloatException(str, result);
1507 rv = true;
1508 }
1509 catch(...)
1510 {
1511 }
1512 return rv;
1513}
1514//---------------------------------------------------------------------------
1515void MyStrToFloatException(String str, double & result)
1516{

Callers

nothing calls this directly

Calls 1

MyStrToFloatExceptionFunction · 0.85

Tested by

no test coverage detected