Skip to content
Snippets Groups Projects
Commit a19c29a5 authored by Alberto Massari's avatar Alberto Massari
Browse files

ENDIANMODE_BIG is no more defined

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@394921 13f79535-47bb-0310-9956-ffa450edef68
parent 1bef09c5
No related branches found
No related tags found
No related merge requests found
......@@ -45,9 +45,7 @@ public :
// the exact encoding, just the rough family that would let us scan
// the XML/TextDecl to find the encoding string.
//
// The 'L's and 'B's stand for little or big endian. We conditionally
// create versions that will automatically map to the local UTF-16 and
// UCS-4 endian modes.
// The 'L's and 'B's stand for little or big endian.
//
// OtherEncoding means that its some transcoder based encoding, i.e. not
// one of the ones that we do internally. Its a special case and should
......@@ -71,14 +69,6 @@ public :
, Encodings_Max = XERCES_XMLCH
, OtherEncoding = 999
#if defined(ENDIANMODE_BIG)
, Def_UTF16 = UTF_16B
, Def_UCS4 = UCS_4B
#else
, Def_UTF16 = UTF_16L
, Def_UCS4 = UCS_4L
#endif
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment