| 2846 | |
| 2847 | |
| 2848 | void XMLPrinter::SealElementIfJustOpened() |
| 2849 | { |
| 2850 | if ( !_elementJustOpened ) { |
| 2851 | return; |
| 2852 | } |
| 2853 | _elementJustOpened = false; |
| 2854 | Putc( '>' ); |
| 2855 | } |
| 2856 | |
| 2857 | |
| 2858 | void XMLPrinter::PushText( const char* text, bool cdata ) |
nothing calls this directly
no outgoing calls
no test coverage detected