diff --git a/src/xercesc/internal/XMLReader.cpp b/src/xercesc/internal/XMLReader.cpp index 55764ade28de4f74a6e93d70d14fcc8404898d6c..174ceccd16dac94ec8c4602506db73831b647939 100644 --- a/src/xercesc/internal/XMLReader.cpp +++ b/src/xercesc/internal/XMLReader.cpp @@ -258,7 +258,7 @@ XMLReader::XMLReader(const XMLCh* const pubId if (fRawBytesAvail < 2) break; - const UTF16Ch* asUTF16 = (const UTF16Ch*)&fRawByteBuf[fRawBufIndex]; + const UTF16Ch* asUTF16 = reinterpret_cast<const UTF16Ch*>(&fRawByteBuf[fRawBufIndex]); if ((*asUTF16 == chUnicodeMarker) || (*asUTF16 == chSwappedUnicodeMarker)) { fRawBufIndex += sizeof(UTF16Ch); @@ -1438,7 +1438,7 @@ void XMLReader::doInitDecode() } // Look at the raw buffer as UCS4 chars - const UCS4Ch* asUCS = (const UCS4Ch*)fRawByteBuf; + const UCS4Ch* asUCS = reinterpret_cast<const UCS4Ch*>(fRawByteBuf); while (fRawBufIndex < fRawBytesAvail) { @@ -1561,7 +1561,7 @@ void XMLReader::doInitDecode() break; XMLSize_t postBOMIndex = 0; - const UTF16Ch* asUTF16 = (const UTF16Ch*)&fRawByteBuf[fRawBufIndex]; + const UTF16Ch* asUTF16 = reinterpret_cast<const UTF16Ch*>(&fRawByteBuf[fRawBufIndex]); if ((*asUTF16 == chUnicodeMarker) || (*asUTF16 == chSwappedUnicodeMarker)) { fRawBufIndex += sizeof(UTF16Ch);