MCPcopy Create free account
hub / github.com/AllentDan/LibtorchTutorials / SetIntValue

Method SetIntValue

lesson7-Detection/src/utils/tinyxml.cpp:1250–1259  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1248}
1249
1250void TiXmlAttribute::SetIntValue( int _value )
1251{
1252 char buf [64];
1253 #if defined(TIXML_SNPRINTF)
1254 TIXML_SNPRINTF(buf, sizeof(buf), "%d", _value);
1255 #else
1256 sprintf (buf, "%d", _value);
1257 #endif
1258 SetValue (buf);
1259}
1260
1261void TiXmlAttribute::SetDoubleValue( double _value )
1262{

Callers 1

SetAttributeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected