MCPcopy Create free account
hub / github.com/SOUI2/soui / SetDoubleValue

Method SetDoubleValue

tools/src/uiresbuilder/tinyxml/tinyxml.cpp:1279–1288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1277}
1278
1279void TiXmlAttribute::SetDoubleValue( double _value )
1280{
1281 char buf [256];
1282 #if defined(TIXML_SNPRINTF)
1283 TIXML_SNPRINTF( buf, sizeof(buf), "%g", _value);
1284 #else
1285 sprintf (buf, "%g", _value);
1286 #endif
1287 SetValue (buf);
1288}
1289
1290int TiXmlAttribute::IntValue() const
1291{

Callers 1

SetDoubleAttributeMethod · 0.80

Calls 1

SetValueFunction · 0.85

Tested by

no test coverage detected