| 758 | |
| 759 | |
| 760 | void TiXmlElement::SetDoubleAttribute( const char * name, double val ) |
| 761 | { |
| 762 | TiXmlAttribute* attrib = attributeSet.FindOrCreate( name ); |
| 763 | if ( attrib ) { |
| 764 | attrib->SetDoubleValue( val ); |
| 765 | } |
| 766 | } |
| 767 | |
| 768 | |
| 769 | #ifdef TIXML_USE_STL |
nothing calls this directly
no test coverage detected