| 742 | |
| 743 | |
| 744 | void TiXmlElement::SetDoubleAttribute( const char * name, double val ) |
| 745 | { |
| 746 | TiXmlAttribute* attrib = attributeSet.FindOrCreate( name ); |
| 747 | if ( attrib ) { |
| 748 | attrib->SetDoubleValue( val ); |
| 749 | } |
| 750 | } |
| 751 | |
| 752 | |
| 753 | #ifdef TIXML_USE_STL |
nothing calls this directly
no test coverage detected