mirror of
https://git.freebsd.org/ports.git
synced 2025-05-21 03:23:10 -04:00
* https://issues.apache.org/jira/browse/XERCESC-1994 * https://issues.apache.org/jira/browse/XERCESC-1995 - Bump PORTREVISION - While at it, add a 'test' target to run the provided test suite PR: 171537 [1] Submitted by: Michael Gmelin <freebsd@grem.de>
11 lines
479 B
C++
11 lines
479 B
C++
--- src/xercesc/util/regx/ParserForXMLSchema.cpp.orig
|
|
+++ src/xercesc/util/regx/ParserForXMLSchema.cpp
|
|
@@ -156,7 +156,7 @@ XMLInt32 ParserForXMLSchema::decodeEscaped() {
|
|
break;
|
|
default:
|
|
{
|
|
- XMLCh chString[] = {chBackSlash, ch, chNull};
|
|
+ XMLCh chString[] = {chBackSlash, static_cast<XMLCh>(ch), chNull};
|
|
ThrowXMLwithMemMgr1(ParseException,XMLExcepts::Parser_Process2, chString, getMemoryManager());
|
|
}
|
|
}
|