| 414 | // ================================================================================================= |
| 415 | |
| 416 | static void EndCdataSectionHandler ( void * userData ) |
| 417 | { |
| 418 | IgnoreParam(userData); |
| 419 | |
| 420 | #if XMP_DebugBuild & DumpXMLParseEvents // Avoid unused variable warning. |
| 421 | ExpatAdapter * thiz = (ExpatAdapter*)userData; |
| 422 | #endif |
| 423 | |
| 424 | #if XMP_DebugBuild & DumpXMLParseEvents |
| 425 | if ( thiz->parseLog != 0 ) { |
| 426 | PrintIndent ( thiz->parseLog, thiz->elemNesting ); |
| 427 | fprintf ( thiz->parseLog, "EndCDATA\n" ); |
| 428 | } |
| 429 | #endif |
| 430 | |
| 431 | } // EndCdataSectionHandler |
| 432 | |
| 433 | // ================================================================================================= |
| 434 |
nothing calls this directly
no test coverage detected