From a19c29a5399e9fc52576732e2e3d91c330015ca7 Mon Sep 17 00:00:00 2001 From: Alberto Massari <amassari@apache.org> Date: Tue, 18 Apr 2006 11:33:10 +0000 Subject: [PATCH] ENDIANMODE_BIG is no more defined git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@394921 13f79535-47bb-0310-9956-ffa450edef68 --- src/xercesc/framework/XMLRecognizer.hpp | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/xercesc/framework/XMLRecognizer.hpp b/src/xercesc/framework/XMLRecognizer.hpp index 9af486966..55f797218 100644 --- a/src/xercesc/framework/XMLRecognizer.hpp +++ b/src/xercesc/framework/XMLRecognizer.hpp @@ -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 }; -- GitLab