MCPcopy Create free account
hub / github.com/JayXon/Leanify / QueryFloatText

Method QueryFloatText

lib/tinyxml2/tinyxml2.cpp:1438–1448  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1436
1437
1438XMLError XMLElement::QueryFloatText( float* fval ) const
1439{
1440 if ( FirstChild() && FirstChild()->ToText() ) {
1441 const char* t = FirstChild()->Value();
1442 if ( XMLUtil::ToFloat( t, fval ) ) {
1443 return XML_SUCCESS;
1444 }
1445 return XML_CAN_NOT_CONVERT_TEXT;
1446 }
1447 return XML_NO_TEXT_NODE;
1448}
1449
1450
1451

Callers

nothing calls this directly

Calls 2

FirstChildFunction · 0.85
ValueMethod · 0.80

Tested by

no test coverage detected