| 1769 | |
| 1770 | |
| 1771 | XMLUnknown* XMLDocument::NewUnknown( const char* str ) |
| 1772 | { |
| 1773 | TIXMLASSERT( sizeof( XMLUnknown ) == _commentPool.ItemSize() ); |
| 1774 | XMLUnknown* unk = new (_commentPool.Alloc()) XMLUnknown( this ); |
| 1775 | unk->_memPool = &_commentPool; |
| 1776 | unk->SetValue( str ); |
| 1777 | return unk; |
| 1778 | } |
| 1779 | |
| 1780 | static FILE* callfopen( const char* filepath, const char* mode ) |
| 1781 | { |
no test coverage detected