From: malaterre Date: Fri, 11 Feb 2005 20:48:49 +0000 (+0000) Subject: BUG: Doh this one should not be changed. The reading of file should remain fully... X-Git-Tag: Version1.0.bp~11 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=cdddc2757271f571a876ff9f402af0114c00228c;p=gdcm.git BUG: Doh this one should not be changed. The reading of file should remain fully little endian... --- diff --git a/src/gdcmUtil.cxx b/src/gdcmUtil.cxx index 467777c5..8825cb97 100644 --- a/src/gdcmUtil.cxx +++ b/src/gdcmUtil.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmUtil.cxx,v $ Language: C++ - Date: $Date: 2005/02/11 20:04:08 $ - Version: $Revision: 1.138 $ + Date: $Date: 2005/02/11 20:48:49 $ + Version: $Revision: 1.139 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -351,7 +351,7 @@ unsigned int Util::GetCurrentProcessID() */ bool Util::IsCurrentProcessorBigEndian() { -#if defined(GDCM_WORDS_BIGENDIAN) || defined(GDCM_FORCE_BIGENDIAN_EMULATION) +#if defined(GDCM_WORDS_BIGENDIAN) return true; #else return false;